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

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

时间:2014-12-21 21:55:21      阅读:213      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!