首页 > 编程语言 > 详细

Effective C++ .13使用智能指针来引用资源

时间:2014-12-21 21:52:43      阅读:196      评论:0      收藏:0      [点我收藏+]
#include <iostream>
#include <cstdlib>
#include <memory>
using namespace std;

class Kiwi {
private:
    int weight;
public:
    Kiwi(int w) : weight(w) {}
    ~Kiwi() {
        cout<<"~Kiwi"<<endl;
    }
    int getWeight() {return weight;}
};

void driven() {
    shared_ptr<Kiwi> p(new Kiwi(100));
    cout<<p->getWeight()<<endl;

    shared_ptr<Kiwi> q = p;
    cout<<p->getWeight()<<endl;
    cout<<q->getWeight()<<endl;

}

int main() {
    cout<<"test start"<<endl;
    driven();
    cout<<"test end"<<endl;
    return 0;
}

auto_ptr同时只能有一个指向资源

shared_ptr同时可以有多个指向资源

Effective C++ .13使用智能指针来引用资源

原文:http://www.cnblogs.com/lailailai/p/4176985.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!