Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++에서 빈 클래스의 개체 크기는 얼마입니까?

<시간/>

다음은 빈 클래스의 객체 크기를 구하는 예제입니다.

예시

#include <bits/stdc++.h>
using namespace std;
class p1 {
   public:
   void first() {
      cout << "\nThe parent class p1 function is called.";
   }
};
class p2
{ };
int main() {
   cout << "The size of non-empty class p1 = " << sizeof(p1);
   cout << "\nThe size of empty class p2 = " << sizeof(p2);
   p2 p;
   cout << "\nThe size of object of empty class p2 = " << sizeof(p);
   p1 o;
   cout << "\nThe size of object of non-empty class p1 = " << sizeof(o);
   return 0;
}

출력

The size of non-empty class p1 = 1
The size of empty class p2 = 1
The size of object of empty class p2 = 1
The size of object of non-empty class p1 = 1

위의 프로그램에서 빈 클래스 p2가 생성됩니다.

class p2
{ };

클래스와 객체의 크기는 다음과 같이 출력됩니다 -

cout << "The size of non-empty class p1 : " << sizeof(p1);
cout << "\nThe size of empty class p2 : " << sizeof(p2);
p2 p;
cout << "\nThe size of object of empty class : " << sizeof(p);
p1 o;
cout << "\nThe size of object of non-empty class p1 : " << sizeof(o);