C++编程之智能指针

文章介绍了智能指针的概念,它是一个类对象,负责托管另一个对象并自动执行析构,以此管理堆区内存。文中通过C++代码示例展示了如何使用标准库中的`auto_ptr`以及自定义的`Auto_ptr`模板类来实现智能指针的功能。
摘要由CSDN通过智能技术生成

1.智能指针是指针吗?智能指针不是指针,是一个类对象,只不过这个对象托管了另一个对象的自动析构,实现堆区的自动析构,这就是智能指针的特性

#include <iostream>
#include<memory>//智能指针的头文件
using namespace std;
//1.定义一个学生类
class Stu
{
private:
    string name;
    int age;
public:
    Stu(string name,int age)
    {
        this->name=name;
        this->age=age;
        cout<<"这是Stu的构造函数"<<endl;
    }

    void showInfo()
    {
        cout<<"学生姓名:"<<this->name<<"年龄"<<this->age<<endl;
    }

    ~Stu()
    {
        cout<<"Stu的析构函数"<<endl;
    }
};

int main(int argc, char *argv[])
{
    auto_ptr<Stu> stu_ptr(new Stu("zhangsan",18));
    stu_ptr.get()->showInfo();
    return 0;
}

封装一个智能指针类:

#include <iostream>
#include<memory>//智能指针的头文件
using namespace std;
//1.定义一个学生类
class Stu
{
private:
    string name;
    int age;
public:
    Stu(string name,int age)
    {
        this->name=name;
        this->age=age;
        cout<<"这是Stu的构造函数"<<endl;
    }

    void showInfo()
    {
        cout<<"学生姓名:"<<this->name<<"年龄"<<this->age<<endl;
    }

    ~Stu()
    {
        cout<<"Stu的析构函数"<<endl;
    }
};


template<class T>
class Auto_ptr
{
private:
    T* p; //定义一个指针指向堆区空间
public:
   Auto_ptr(T* _p):p(_p) //初始化指针
    {
        cout<<"Auto_ptr的构造函数"<<endl;
    }

    ~Auto_ptr()
    {
        delete p;
    }

    //get方法
    T* get()
    {
        return p;
    }

    T* operator ->() //->号重载
    {
        return p;
    }
    Auto_ptr(const Auto_ptr&other)
    {
        this->p=other.p;
        other.p=nullptr;
    }
};

int main(int argc, char *argv[])
{
//    auto_ptr<Stu> stu_ptr(new Stu("zhangsan",18));
//    stu_ptr.get()->showInfo();

    Auto_ptr<Stu> ptr(new Stu("zhangsan",18));
    ptr->showInfo();
    return 0;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值