首页 > 代码库 > 记录以下boost::shared_ptr的一个使用细节
记录以下boost::shared_ptr的一个使用细节
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;}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。