首页 > 其他 > 详细

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

时间:2014-07-09 23:35:00      阅读:722      评论:0      收藏:0      [点我收藏+]

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的一个使用细节

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

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