`

Boost智能指针——shared_ptr (转)

 
阅读更多

boost::scoped_ptr虽然简单易用,但它不能共享所有权的特性却大大限制了其使用范围,而boost::shared_ptr可以解决这一局限。顾名思义,boost::shared_ptr是可以共享所有权的智能指针,首先让我们通过一个例子看看它的基本用法:

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

class implementation
{
public:
~implementation() { std::cout <<"destroying implementation\n"; }
void do_something() { std::cout << "did something\n"; }
};

void test()
{
boost::shared_ptr<implementation> sp1(new implementation());
std::cout<<"The Sample now has "<<sp1.use_count()<<" references\n";

boost::shared_ptr<implementation> sp2 = sp1;
std::cout<<"The Sample now has "<<sp2.use_count()<<" references\n";

sp1.reset();
std::cout<<"After Reset sp1. The Sample now has "<<sp2.use_count()<<" references\n";

sp2.reset();
std::cout<<"After Reset sp2.\n";
}

void main()
{
test();
}

该程序的输出结果如下:

The Sample now has 1 references
The Sample now has 2 references
After Reset sp1. The Sample now has 1 references
destroying implementation
After Reset sp2.

 

 

 

#include <string>
#include <iostream>
#include <boost/shared_ptr.hpp>
#include <boost/make_shared.hpp>
using namespace boost;
using namespace std;
class implementation
{
public:
~implementation() { cout <<"destroying implementation\n"; }
void do_something() { cout << "did something\n"; }
};

 

void test()
{
/* boost::shared_ptr<implementation> sp1(new implementation());*/
shared_ptr<implementation> sp1;
sp1=make_shared<implementation>();
cout<<"The Sample now has "<<sp1.use_count()<<" references\n";
//
// shared_ptr<implementation> sp2 = sp1;
// cout<<"The Sample now has "<<sp2.use_count()<<" references\n";
//
// sp1.reset();
// cout<<"After Reset sp1. The Sample now has "<<sp2.use_count()<<" references\n";
//
// sp2.reset();
// cout<<"After Reset sp2.\n";
}

 

int main()
{
test();
cout<<"over!";
}

 

 

 

可以看到,boost::shared_ptr指针sp1和sp2同时拥有了implementation对象的访问权限,且当sp1和sp2都释放对该对象的所有权时,其所管理的的对象的内存才被自动释放。在共享对象的访问权限同时,也实现了其内存的自动管理。

boost::shared_ptr的内存管理机制:

boost::shared_ptr的管理机制其实并不复杂,就是对所管理的对象进行了引用计数,当新增一个boost::shared_ptr对该对象进行管理时,就将该对象的引用计数加一;减少一个boost::shared_ptr对该对象进行管理时,就将该对象的引用计数减一,如果该对象的引用计数为0的时候,说明没有任何指针对其管理,才调用delete释放其所占的内存。

上面的那个例子可以的图示如下:

  1. sp1对implementation对象进行管理,其引用计数为1
  2. 增加sp2对implementation对象进行管理,其引用计数增加为2
  3. sp1释放对implementation对象进行管理,其引用计数变为1
  4. sp2释放对implementation对象进行管理,其引用计数变为0,该对象被自动删除

boost::shared_ptr的特点:

和前面介绍的boost::scoped_ptr相比,boost::shared_ptr可以共享对象的所有权,因此其使用范围基本上没有什么限制(还是有一些需要遵循的使用规则,下文中介绍),自然也可以使用在stl的容器中。另外它还是线程安全的,这点在多线程程序中也非常重要。

boost::shared_ptr的使用规则:

boost::shared_ptr并不是绝对安全,下面几条规则能使我们更加安全的使用boost::shared_ptr:

  1. 避免对shared_ptr所管理的对象的直接内存管理操作,以免造成该对象的重释放
  2. shared_ptr并不能对循环引用的对象内存自动管理(这点是其它各种引用计数管理内存方式的通病)。
  3. 不要构造一个临时的shared_ptr作为函数的参数。
    如下列代码则可能导致内存泄漏:
    void test()
    {
    foo(boost::shared_ptr<implementation>(new implementation()),g());
    }
    正确的用法

    void test()
    {
    boost::shared_ptr<implementation> sp (new implementation());
    foo(sp,g());
    }

 

 

 

 

#include "boost/shared_ptr.hpp"
#include <vector>
#include <iostream>
using namespace std;
using namespace boost;
class A
{
public: virtual void sing()=0;
protected: virtual ~A() {};
};
class B : public A
{
public: virtual void sing()
{ std::cout << "Do re mi fa so la\n"; }
};
boost::shared_ptr<A> createA()
{
boost::shared_ptr<A> p(new B()); return p;
}
int main()
{
vector<boost::shared_ptr<A>> container;
for (int i=0;i<10;++i)
{
container.push_back(createA());
}
std::cout << "The choir is gathered: \n";
for (vector<boost::shared_ptr<A>>::iterator it=container.begin();it!=container.end();++it)
{
(*it)->sing();
}
}

 

 

 

 

 

 

 

 

 

 

 

 

shared_ptr是典型的资源获取即初始化技术。不过shared_ptr采用了更复杂一点RAII方式,因为它实现了引用计数。当创建资源的时候将它放入一个shared_ptr, shared_ptr内部记录对这种资源的引用次数为1次。当这个shared_ptr对象离开作用域时,引用次数减1,shared_ptr对象析构时,检查到引用次数为0了,就销毁资源:

{
boost::shared_ptr<int> pInt(new int(14));
assert(pInt.use_count() == 1); // new int(14)这个指针被引用1次
...... // 此处有一系列代码

 

} //pInt离开作用域, 所以new int(14)被引用次数为0. 指针被销毁。防止了

 

  此处及以下assert代码都会判断成功。如果......跳出异常。那么pInt也离开了作用域,指针照常还是被销毁,所以智能指针可以有效防止资源泄露。

 

考虑更多次的引用情况:

 

{

 

boost::shared_ptr<int> pInt2;
assert(pInt2.use_count() == 0); // temp2还没有引用指针

 

{

 

boost::shared_ptr<int> pInt1(new int(14));
assert(pInt1.use_count() == 1); // new int(14)这个指针被引用1次

 

pInt2 = pInt1;
assert(pInt1.use_count() == 2); // new int(14)这个指针被引用2次
assert(pInt2.use_count() == 2);
} //pInt1离开作用域, 所以new int(14)被引用次数-1

 

assert(pInt2.use_count() == 1);
} // pInt2离开作用域,引用次数-1,现在new int(14)被引用0次,所以销毁它

 

不管资源曾经被多少次引用。当它被引用0次时就会销毁。

 

1.3

 

  在shard_ptr使用中经常会发现,一个对象会有两次被析构的情况。其实这种是因为那个对象指针被两次当成shard_ptr构造函数里的参数。一定要避免这种现象。考虑如下代码:

 

{
int* pInt = new int(14);
boost::shared_ptr<int> temp1(pInt);
assert(temp1.use_count() == 1); // 用一个指针初始化temp1,temp1认为pInt只被它拥有。所以这个指针被引用1次

 

boost::shared_ptr<int> temp2(pInt); // 用一个指针初始化temp2,temp2认为pInt只被它拥有。所以这个指针被引用1次
assert(temp2.use_count() == 1);

 

} // temp1,temp2都离开作用域,它们都销毁pInt. pInt被销毁了两次!系统终于崩溃了 -_-

 


正确的做法是将原始指针赋给智能指针后,以后的操作都要针对智能指针了.

 

{
boost::shared_ptr<int> temp1(new int(14)); // 资源获取即初始化
assert(temp1.use_count() == 1);

 

boost::shared_ptr<int> temp2(temp1);
assert(temp2.use_count() == 2);

 

} // temp1,temp2都离开作用域,引用次数变为0,指针被销毁

 

1.4
如果资源的创建销毁不是以new,delete的方式创建销毁怎么办?shared_ptr也可以指定删除器:

 

// FileCloser.h FileCloser删除器  
class FileCloser
{
public:
void operator()(FILE *pf)
{
if (pf)
{
fclose(pf);
}
}
};

 

// 某实现文件
{
boost::shared_ptr<FILE> fp(fopen(pszConfigFile, "r"), FileCloser()); // 指定调用FileCloser函数对象销毁资源
}

 


1.5
  shared_ptr已经被即将到来的标准库技术报告所采纳,将成为tr1中的一员。为了以后更好的移植现有代码到C++新标准中。可以使用一个namespace的一个小技巧,在头文件StdAfx.h中声明(参考

 

Effective C++ Item 54):
namespace std

 

{

 

namespace tr1 = ::boost; // namespace std::tr1 is an alias

 

} // for namespace boost

 

这样就可以用如下方法写代码:

 

std::tr1::shared_ptr<int> pInt(new int(14));

 

 

 

 

 

 

 

 

 

 

 

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

using namespace boost;
using std::cout;
using std::endl;
using std::auto_ptr;

class A
{
public:
void print()
{
cout<<"hello"<<endl;
}
};

int main()
{
auto_ptr<A> aptr1(new A);
auto_ptr<A> aptr2;

aptr2 = aptr1;
aptr2->print(); //Ok
cout<<"pointer in aptr1 is: "<<aptr1.get()<<endl;
aptr1->print(); //Wrong!

A *a = new A;
shared_ptr<A> sptr1(a);
shared_ptr<A> sptr2(sptr1); //alright
sptr2 = sptr1;
sptr2->print(); //ok
sptr1->print(); //ok

int *b = new int;
shared_ptr<int> sptr3(b);
shared_ptr<int> sptr4(b); //WRONG!!
return 0;
}

 

 

 

 

 

 

 

 

 

 

总结

引用计数智能指针是非常重要的工具。Boost的 shared_ptr 提供了坚固而灵活的解决方案,它已被广泛用于多种环境下。需要在使用者之间共享对象是常见的,而且通常没有办法通知使用者何时删除对象是安全的。shared_ptr 让使用者无需知道也在使用共享对象的其它对象,并让它们无需担心在没有对象引用时的资源释放。这对于Boost的智能指针类而言是最重要的。你会看到Boost.Smart_ptr中还有其它的智能指针,但这一个肯定是你最想要的。通过使用定制删除器,几乎所有资源类型都可以存入 shared_ptr。这使得shared_ptr 成为处理资源管理的通用类,而不仅仅是处理动态分配对象。与裸指针相比,shared_ptr会有一点点额外的空间代价。我还没有发现由于这些代价太大而需要另外寻找一个解决方案的情形。不要去创建你自己的引用计数智能指针类。没有比使用 shared_ptr智能指针更好的了。

在以下情况时使用 shared_ptr

  • 当有多个使用者使用同一个对象,而没有一个明显的拥有者时

  • 当要把指针存入标准库容器时

  • 当要传送对象到库或从库获取对象,而没有明确的所有权时

  • 当管理一些需要特殊清除方式的资源时[9]

    [9] 通过定制删除器的帮助。

 

 

 

 

 

 

 

 

 

 

 


int main()
{
// test();
// cout<<"over!";
{
int* pInt = new int(14);
boost::shared_ptr<int> temp1(pInt);
assert(temp1.use_count() == 1); // 用一个指针初始化temp1,temp1认为pInt只被它拥有。所以这个指针被引用1次

 

boost::shared_ptr<int> temp2(pInt); // 用一个指针初始化temp2,temp2认为pInt只被它拥有。所以这个指针被引用1次
assert(temp2.use_count() == 1);

 

} // temp1,temp2都离开作用域,它们都销毁pInt. pInt被销毁了两次!系统终于崩溃了 -_-

 


}

 

 

分享到:
评论

相关推荐

    C++11 下使用 Boost.Serialization 库实现智能指针的序列化

    在实际操作中,为了使序列化过程更加简洁,通常会创建辅助类(如`shared_ptr_helper.cpp`和`shared_ptr_helper.hpp`中的类)来封装特定类型的智能指针的序列化和反序列化过程。例如,你可以创建一个`serialize`模板...

    浅析Boost智能指针:scoped_ptr shared_ptr weak_ptr

    【Boost智能指针详解:scoped_ptr、shared_ptr与weak_ptr】 智能指针是C++中用来自动管理动态分配内存的对象,它可以确保在适当的时间释放内存,以防止内存泄漏。Boost库提供了一组智能指针类型,包括scoped_ptr、...

    shared_ptr只能对new的内存操作

    在C++标准库中,`std::shared_ptr`(在早期版本中可能使用`boost::shared_ptr`)是一种智能指针,它通过引用计数来管理动态分配的对象生命周期。`std::shared_ptr`的设计目的是自动管理对象的内存,当最后一个指向该...

    Boost智能指针示例源码

    Boost库提供了几种智能指针类型,其中`shared_ptr`和`weak_ptr`是两个关键的成员。在这个名为"Boost智能指针示例源码"的压缩包中,我们有机会深入理解并学习如何在实际项目中使用这些智能指针。 首先,`shared_ptr`...

    shared_ptr

    在智能指针家族中,`shared_ptr`和`weak_ptr`是TR1(Technical Report 1)的一部分,也被称为Boost库的一部分,并被整合到了C++11标准中。 ### shared_ptr `shared_ptr`是一种引用计数智能指针,当一个`shared_ptr...

    Boost智能指针

    boost::shared_ptr&lt;test&gt; ptr_2 = ptr_1; ptr_2-&gt;print(); // 引用计数为2 ptr_1-&gt;print(); // 引用计数仍然为2 return 0; } ``` 3. **`intrusive_ptr&lt;T&gt;`** - **定义**:`intrusive_ptr`类似于`shared_ptr`...

    一个最小的sharedunique_ptr实现来处理booststdsharedunique_ptr不可用的情况。.zip

    在C++编程中,`shared_ptr`和`unique_ptr`是智能指针的两种主要类型,它们用于管理对象的生命周期,以防止内存泄漏。在某些情况下,可能由于库的限制或者特定环境不支持Boost或C++11及更高版本,导致无法使用标准库...

    智能指针boost精简源代码

    在这个“智能指针boost精简源代码”压缩包中,我们有两个主要的文件:`shared_ptr`和`shared_ptr_h`,它们分别对应于Boost库中的`boost::shared_ptr`智能指针的源代码。 `boost::shared_ptr`是一种引用计数型智能...

    shared_ptr线程安全性全面分析

    在C++的智能指针家族中,`shared_ptr`是一个重要成员,它提供了一种自动管理内存的方式,尤其是当多个指针共享同一对象时。`shared_ptr`的设计考虑到了多线程环境中的线程安全性,确保了在并发环境下正确地使用和...

    智能指针的各种实现方法

    除了STL提供的智能指针,Boost库还提供了更为丰富的智能指针类型,包括`boost::shared_ptr`、`boost::weak_ptr`、`boost::intrusive_ptr`等,这些类型在某些场景下提供了更高级的功能和更好的性能。 #### `boost::...

    boost_1_68_0.7z

    总的来说,boost_1_68_0.7z压缩包中的这三个主要部分——math、smart_ptr和exception,分别涵盖了高级数学计算、智能指针管理和异常处理这三个核心领域,极大地丰富了C++程序员的工具箱。掌握这些模块,将有助于开发...

    SmartPointer.zip

    `shared_ptr`是C++11标准之前 Boost 提供的一种智能指针,它采用了引用计数的方式来管理对象的生命周期。当一个`shared_ptr`被创建时,它会增加目标对象的引用计数;当`shared_ptr`被销毁或者赋值给其他`shared_ptr`...

    C++ 中boost::share_ptr智能指针的使用方法

    使用 boost::shared_ptr 智能指针需要首先编译 Boost 库,然后在代码中包含头文件 &lt;boost/shared_ptr.hpp&gt;。 1. 创建智能指针 使用 boost::shared_ptr 智能指针可以创建一个对象,例如: ```cpp boost::shared_ptr...

    stl中的智能指针

    本文将详细介绍 STL 中的智能指针,包括 std::auto_ptr、boost::scoped_ptr、boost::shared_ptr、boost::scoped_array、boost::shared_array、boost::weak_ptr、boost::intrusive_ptr 等七种智能指针。 一、简介 ...

    boost_1_74_0.zip

    1. **Smart Pointers**:Boost库提供了智能指针(如shared_ptr、unique_ptr、weak_ptr),这些指针能帮助开发者更安全地管理内存,避免内存泄漏问题。 2. **Multithreading**:Boost.Thread库提供了线程管理和同步...

    boost_1_53_0.zip

    1. **智能指针** (Smart Pointers):Boost库包含了smart_ptr,如`shared_ptr`, `unique_ptr`, 和 `weak_ptr`,这些智能指针能够自动管理对象的生命周期,防止内存泄漏,同时提供RAII(Resource Acquisition Is ...

    boost_1_59_0.tar.gz

    2. **智能指针(Boost.smart_ptr)**:如`shared_ptr`, `unique_ptr`等,这些智能指针帮助开发者更好地管理内存,防止内存泄漏。 3. **正则表达式库(Boost.Regex)**:提供了比标准库更强大的正则表达式处理能力。 4. *...

Global site tag (gtag.js) - Google Analytics