C++智能指针shared_ptr学习笔记

  1. C++智能指针shared_ptr实现的是,多个指针指向相同的对象,其释放的时机是最后一个引用被销毁时,当use_count()为0时被彻底释放。
  2. 我们可以调用release()释放资源所有权,计数减一。
  3. shared_ptr容易引起死锁。
  4. 避免使用raw pointer
#include<iostream>
#include<memory>
using namespace std;
class Dog{

    public:
        Dog(){
            cout<<"Nameless dog created."<<endl;
            s1="nameless";

        }
        Dog(string name){
            cout<<"Dog is created:" << name<<endl;
            s1=name;

        }
        void foo(){

            cout<<"Dog "<<s1<<" rules. "<<endl;

        }
        ~Dog(){
            cout<<"Dog is destoryed:"<<s1<<endl;
        }
    private:
        string s1;

};
void test()
{
    // shared_ptr<Dog> p(new Dog('jinmao'));//count=1,可以用上面这一种方式
    shared_ptr<Dog> p=make_shared<Dog>("jinmao");//count=1,这种方式更快更好。
    cout<<p.use_count()<<endl;
    {
    shared_ptr<Dog> p1=p;//count=2
     cout<<p.use_count()<<endl;
    p1->foo();//count=1
     cout<<p.use_count()<<endl;
    }
    p->foo();
     
}//count=0
int main()
{
    test();
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值