What is size of empty class object

Answers were Sorted based on User's Feedback



What is size of empty class object..

Answer / manish shikarbar

answer is :1

Example:

class Test
{
};

Test Obj;

int size = sizeof(Obj); // answer is 1

Is This Answer Correct ?    9 Yes 1 No

What is size of empty class object..

Answer / kaminee

1

Is This Answer Correct ?    9 Yes 3 No

What is size of empty class object..

Answer / shanky

ans-1.

Is This Answer Correct ?    6 Yes 0 No

What is size of empty class object..

Answer / orvaishnavi

The size of an empty class is 1.
Reason - An object of a class should have unique address.
In order for the object to get unique address, the compiler
inserts a dummy type of size 1(least positive value) into
the empty class so the sizeof the class is returned as 1.

Is This Answer Correct ?    5 Yes 0 No

What is size of empty class object..

Answer / vinay singh

the size of class is nothing until it will not create an object. Class is a template so class object size is determined.So here empty class object size is 1 byte and object is created on managed heap.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is the advantage of c++ over c?

0 Answers  


How do I open binary files?

1 Answers  


How can you quickly find the number of elements stored in a static array?

0 Answers  


can anybody please tell me how to write a program in c++,without using semicolon(;)

6 Answers   NIIT,


What is the use of volatile variable?

0 Answers  






Explain the use of virtual destructor?

0 Answers  


What are class and object in C++?

1 Answers  


Explain register storage specifier.

0 Answers  


What sorting algorithm does c++ use?

0 Answers  


What are put and get pointers?

0 Answers  


What is wrapper class in c++?

0 Answers  


Name the operators that cannot be overloaded in C++?

0 Answers   Fidelity,


Categories