在以下计划的最后两行中,static_cast<void*>
和dynamic_cast<void *>
的行为有所不同。根据我的理解,dynamic_cast<void*>
的结果总是解析为完整对象的地址。所以它以某种方式使用RTTI。任何人都可以解释编译器如何使用RTTI来区分这两者。
#include <iostream>
using namespace std;
class Top {
protected:
int x;
public:
Top(int n) { x = n; }
virtual ~Top() {}
friend ostream& operator<<(ostream& os, const Top& t) {
return os << t.x;
}
};
class Left : virtual public Top {
protected:
int y;
public:
Left(int m, int n) : Top(m) { y = n; }
};
class Right : virtual public Top {
protected:
int z;
public:
Right(int m, int n) : Top(m) { z = n; }
};
class Bottom : public Left, public Right {
int w;
public:
Bottom(int i, int j, int k, int m): Top(i), Left(0, j), Right(0, k) { w = m; }
friend ostream& operator<<(ostream& os, const Bottom& b) {
return os << b.x << ',' << b.y << ',' << b.z<< ',' << b.w;
}
};
int main() {
Bottom b(1, 2, 3, 4);
cout << sizeof b << endl;
cout << b << endl;
cout << static_cast<void*>(&b) << endl;
Top* p = static_cast<Top*>(&b);
cout << *p << endl;
cout << p << endl;
cout << static_cast<void*>(p) << endl;
cout << dynamic_cast<void*>(p) << endl;
return 0;
}
可能的输出:https://ideone.com/WoX5DI
28
1,2,3,4
0xbfcce604
1
0xbfcce618
0xbfcce618
0xbfcce604
答案 0 :(得分:9)
从5.2.7 / 7开始:
如果T是“指向cv void的指针”,则结果是指向最多的指针 v指向的派生对象。否则,应用运行时检查 查看v指向或引用的对象是否可以转换为 T指出或引用的类型。
因此,使用dynamic_cast<void*>(o)
,您将获得指向最“派生”对象的第一个字节的指针(如果o
是多态的)。
编译器为dynamic_cast<void *>(...)
生成的代码类似于:
static_cast<void*>(dynamic_cast<most_derived_type *>(...))
此属性通常用于序列化。