UrbanPro
true

Learn C++ Language from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

Do You Know Size Of Empty Class and Reason?

Umasankar Natarajan
07/07/2017 0 0

Size of empty class is always 1 byte.

Reason is, in order to differentiate one object to another object, the size of empty class is always 1 byte.

See the below c++ code snippet. Here there are three object created, each object size is 1. Their address is +1 byte for each object.

#include
using namespace std;

// Empty class declaration
class Student
{
};

int main() {
    // Object creation
    Student s1,s2,s3;

    // Getting sizeof the object
    cout << "Size of empty class Student for object s1 " << sizeof(s1) << endl;
    cout << "Size of empty class Student for object s2 " << sizeof(s2) << endl;
    cout << "Size of empty class Student for object s3 " << sizeof(s3) << endl;

    // Getting address of the object
    cout << "Address of object s1 " << &s1 << endl;
    cout << "Address of object s2 " << &s2 << endl;
    cout << "Address of object s3 " << &s3 << endl;
    
    return 0;
}

output
Size of empty class Student for object s1 1
Size of empty class Student for object s2 1
Size of empty class Student for object s3 1

Address of object s1 0x7ffc4fb8572d
Address of object s2 0x7ffc4fb8572e
Address of object s3 0x7ffc4fb8572f

0 Dislike
Follow 1

Please Enter a comment

Submit

Other Lessons for You

Set 0 To Kth Bit In A Variable
The following code snippet Set 0 to Kth Bit in an variable #include int UnsetBitValue(int n, int k);int main(){ printf("%d\n\n",UnsetBitValue(255,6)); return 0;}// Set kth bit to zeroint UnsetBitValue(int...

Truncate, Drop And Delete Commands In SQL
Truncate: Truncate command will delete the Table data only, it keeps the table schema as it is. Table data Can be rollback Example : TRUNCATE TABLE User; Drop: Drop command will delete both...

Learning excel complex function by using simple steps
Step 1: Understand and practice the individual excel functions thoroughly Step 2: Split the problem statement into N number of small pieces. Step 3: Use individual functions to solve the small piece...

Do You Know How Is Size Of Structure Defined?
Size of the structure is defined based on multiplies of bigger data type member in the structure. Example: If a structure contains integer, char, short data type, then size of the Structure will be multiples...

Avoid VLookup function in excel, instead use index and match combination
Avoid VLookup function in excel, instead use index and match combination. Reason: 1) Index and Match combination will be faster than Vlookup function. In order to proof this you can create 1000 rows...
X

Looking for C++ Language Classes?

The best tutors for C++ Language Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn C++ Language with the Best Tutors

The best Tutors for C++ Language Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more