本文主要是介绍学习笔记三:boost智能指针:scoped_ptr和shared_ptr,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.scoped_ptr所管理的指针,所有权不能被转让。scoped_ptr的拷贝构造函数和赋值操作符都声明为了私有,这样scoped_ptr不能进行复制操作,其所含指针就不能改变所有权。
2.提供了*和->操作符的重载,这样操作scoped_ptr对象可以像操作原始指针一样方便,但不能进行比较、自增、自减等操作。
3.因为scoped_ptr不支持拷贝和赋值操作,所以scoped_ptr不能作为STL容器的元素。
#include "stdafx.h"
#include <string>
#include <vector>
#include <iostream>
#include <boost/smart_ptr.hpp>
using namespace boost;
using namespace std;int _tmain(int argc, _TCHAR* argv[])
{// 1.用法,在构造的时候,接受new表达式结果scoped_ptr<string> sp(new string("Test scope ptr"));// 2.模拟指针的操作cout<<sp->size()<<endl;cout<<*sp<<endl;// 3.不能进行比较、自增、自减,转移指针等操作// ++sp; // 错误// scoped_ptr<string> sp1 = sp; 构造函数为私有函数// 4.不能作为stl容器的元素// vector<scoped_ptr<string> > vecSP; // 可以通过// vecSP.pop_back(sp); // 错误,因为scoped_ptr不支持拷贝和赋值// 5.不能转移所管理的指针的所有权auto_ptr<string> ap(new string("Test auto ptr"));scoped_ptr<string> sp2(ap);assert(ap.get()==0);ap.reset(new string("new test"));cout<<*sp2<<endl<<*ap<<endl;return 0;
}
4.与scoped_ptr不同,shared_ptr可以作为STL容器的元素。(更多shared_ptr的知识之后再了解)
这篇关于学习笔记三:boost智能指针:scoped_ptr和shared_ptr的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!