作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
考虑这个例子:
#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/
我是一名优秀的程序员,十分优秀!