码迷,mamicode.com
首页 > 编程语言 > 详细

c++中向上转型(安全)和向下转型(不安全)

时间:2016-10-31 14:24:53      阅读:533      评论:0      收藏:0      [点我收藏+]

标签:向上转型   向下转型   多态   


#include <iostream>                                                                                                                                                              
using namespace std;

class A{
    public:
        void myfunc(){
            cout << "A myfunc" << endl;
        }

        virtual void mytest(){
            cout << "A mytest" << endl;
        }
};

class B:public A{
    public:
        void myfunc(){
            cout << "B myfunc" << endl;
        }
        virtual void mytest(){
            cout << "B mytest"  << endl;
        }

};

int main(void){
    A* pa = new A();
    B* pb = new B();
    pa = pb;//向上构造,隐式的,是安全的(pb = static_cast<B*>(pa)是向下转型,不安全的.)
    

    pb->myfunc();//B myfunc
    pb->mytest();//B mytest

    pa->myfunc();//A myfunc

    pa->mytest();//B mytest   向上转型达到,多态的目的.

    return 0;

}

本文出自 “12208412” 博客,请务必保留此出处http://12218412.blog.51cto.com/12208412/1867510

c++中向上转型(安全)和向下转型(不安全)

标签:向上转型   向下转型   多态   

原文地址:http://12218412.blog.51cto.com/12208412/1867510

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!