gpt4 book ai didi

c++ - 为什么这行得通? (多重继承,切片)

转载 作者:搜寻专家 更新时间:2023-10-31 02:22:41 24 4
gpt4 key购买 nike

考虑这个例子:

#include <iostream>
using namespace std;

class A
{
public:
int x;
};

class B
{
public:
int y;
B() { y = 0; }
B(int var): y(var) {}
};

class C : public A, public B
{
public:
void assignB(B x)
{
*(B *)this = x; // <-- why does this properly assign B?
}
};

int main() {
C test;
test.x = 5;
test.y = 10;
test.assignB(B(2));
cout << "x " << test.x << endl;
cout << "y " << test.y << endl;
return 0;
}

我比较好奇的是C类的assignB方法。通常,我对类型转换的期望是 (B *) this 会将 this 类型转换为 B* 并因此覆盖 x 成员,而不是 y 成员。然而,这段代码恰恰相反:它正确地?分配给 C 的 B 部分。

刚刚在 MSVC 2013 和 GCC 4.9.2 上测试。两者的行为相同。

最佳答案

这是因为多重继承调整了指针。

如果您打印地址,这将是显而易见的

cout << (long long int)(this) << endl;
cout << (long long int)((B *)this) << endl;

也可以考虑使用 static_cast。在这种情况下,普通的 C 风格转换也可以。

关于c++ - 为什么这行得通? (多重继承,切片),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30118229/

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