why is this result ?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



hi:
  I am doing a test for c++;

  here is my code:  

#include <stdio.h>
class A
{};

class B
{
public:
  B(){};
  ~B(){};
};

int main()
{
  
  printf("size of A is %d \n",sizeof(A));
  //printf("size of B is %d \n",sizeof(B));
}

output is   "size of A is 1 " ,I can not understand this result ,
 there is no data in class A ,why here its size is 1?



[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux