Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有课
class abc { int a; int b; }
现在我已经sizeof在 c++中使用过
sizeof
int c=sizeof(abc);
它会给出一个班级的规模吗?为什么?请回复。
那可行。事实上,这就是sizeof 运算符在以这种方式使用时的全部目的。
使用sizeof(type):
sizeof(type)
返回类型的对象表示的字节大小。
在您的情况下,类名就是类型。