标签:
c++11下新用法:计算类公有成员大小,无需提供具体的类,因为不需要进行运算;注意:不能对私有成员或保护成员进行sizeof,因为它们在外部不可访问
1 class A{ 2 public: 3 int a; 4 }; 5 sizeof A::a
【原创】sizeof运算符总结
原文地址:http://www.cnblogs.com/cposture/p/4935196.html