BZ易风

导航

 

最不安全,最鸡肋 不推荐

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);  //两个没有任何关系的类都能转换
                                                     //最不安全 不推荐
   
}

 

posted on 2021-08-25 09:36  BZ易风  阅读(130)  评论(0编辑  收藏  举报