码迷,mamicode.com
首页 > 其他好文 > 详细

记录以下boost::shared_ptr的一个使用细节

时间:2014-07-09 23:34:42      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:blog   使用   os   art   问题   io   

shared_ptr<T>::operator->返回的是T*类型指针,非const T*指针。因此通过const shared_ptr<T>&类型的ptr可以直接调用T各个原始的方法,不用担心const与非const问题。具体shared_ptr::operator->实现如下,摘自boost1.52.0版本boost\smart_ptr\shared_ptr.hpp

T * operator-> () const // never throws
{
      BOOST_ASSERT(px != 0);
      return px;
}

可以看出shared_ptr<T>的operator->中的const修饰,是指shared_ptr<T>对象自身,而非shared_ptr所管理的对象。

这个和普通原声指针还是有很大区别的,需要注意。

因此下面的代码是可以正确编译运行的

#include <boost/shared_ptr.hpp>
#include <iostream>

using namespace std;

class Item
{
public:
    Item(){}
    ~Item(){}
    
    void set(int data) { data_ = data; }
    
    void print(void)
    {
        cout<<"Item::data_: "<<data_<<endl;
    }
    
private:
    int data_;
};

typedef boost::shared_ptr<Item> ItemPtr;

void foo(const ItemPtr& item)
{
    item->set(3);
}

int main ()
{
    ItemPtr item(new Item);
    foo(item);
    item->print();

    return 0;
}

  

记录以下boost::shared_ptr的一个使用细节,布布扣,bubuko.com

记录以下boost::shared_ptr的一个使用细节

标签:blog   使用   os   art   问题   io   

原文地址:http://www.cnblogs.com/lanyuliuyun/p/3829664.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!