最不安全,最鸡肋 不推荐
class Base {}; class Child :public Base {}; class Other {}; //重新解释转换(reinterpre_cast) void test02() { int a = 10; int* p = reinterpret_cast<int*>(a); Base* base = NULL; Other* other = reinterpret_cast<Other*>(base); //两个没有任何关系的类都能转换 //最不安全 不推荐 }