gpt4 book ai didi

c++ - 空类继承的 sizeof() 问题

转载 作者:搜寻专家 更新时间:2023-10-31 00:21:54 25 4
gpt4 key购买 nike

#include <stdio.h> 

class X
{
};

class Y
{
// long x; // case A)
// X x; // case B)
};

class Z : public Y, public X
{
};

int main() {
Z z;
printf("%d %d %d\n",
sizeof(Z), sizeof(Y), (char*)static_cast<X*>(&z) - (char*)&z);
return 0;
}

为什么取消对case A或case B的注释后输出如下:

答:4 4 4
B: 2 1 2

为什么 sizeof(Y) != sizeof(Z) 在情况 B) 中是相等的,但在情况 A) 中是相等的。谁能解释一下?

最佳答案

我对此内存模糊,但我认为这是因为 Z 的两个 X 子对象(基类 X 和 Y::x)必须具有不同的地址。

关于c++ - 空类继承的 sizeof() 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3985760/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com