C++11智能指针之使用shared_ptr实现多态

指针除了管理内存之外,在C++中还有一个重要的功能就是实现多态。

代码很简单,还是使用虚函数。与原生指针并没有什么区别:

#include 
#include 
using namespace std;

class parent
{
public:
    parent()
    {
        cout << "parent  constructor" << endl;
    }

    virtual void showinfo()
    {
        cout << "parent info" << endl;
    }

    ~parent()
    {
        cout << "parent  destructor" << endl;
    }
};

class child : public parent
{
public:
    child()
    {
        cout << "child  constructor" << endl;
    }

    virtual void showinfo()
    {
        cout << "child info" << endl;
    }

    ~child()
    {
        cout << "child  destructor" << endl;
    }
};


int main()
{
    shared_ptr sp = make_shared();
    sp->showinfo();
    return 0;
}

运行程序,输出为: 

parent  constructor
child  constructor
child info
child  destructor
parent  destructor



你可能感兴趣的:(C/C++基础知识)