shared_ptr
智能指针 shared_ptr 的声明初始化方式
由于指针指针使用explicit参数 必须显示声明初始化
shared_ptr<string> pNico = new string("nico"); // ERROR
shared_ptr<string> pNico{new string("nico")}; // OK

也可以使用make_shared()
shared_ptr<string> pNico = make_shared<string>("nico");
shared_ptr<string> pJutta = make_shared<string>("jutta");

智能指针一旦声明
就不能再次分配 除非使用reset()
shared_ptr<string> pNico4;
pNico4 = new string("nico");
//ERROR: no assignment for ordinary pointers
pNico4.reset(new string("nico")); // OK

shared_ptr的使用方式与实际指针使用类似 基本没什么区别

示例 sharedPtrTest1()

//=======================================
对于shared_ptr中的参数 可以指定 删除器 Deleter
示例 sharedPtrTest2()

#include <iostream>
#include <string>
#include <vector>
#include <memory>
#include <fstream> //for ofstream
#include <cstdio> //for remove() using namespace std; void sharedPtrTest1()
{
shared_ptr<string> pNico(new string("nico"));
shared_ptr<string> pJutta(new string("jutta")); (*pNico)[0] = 'N';
pJutta->replace(0, 1, "J"); vector<shared_ptr<string>> whoMadeCoffee;
whoMadeCoffee.push_back(pJutta);
whoMadeCoffee.push_back(pJutta);
whoMadeCoffee.push_back(pNico);
whoMadeCoffee.push_back(pJutta);
whoMadeCoffee.push_back(pNico); for (auto ptr : whoMadeCoffee) {
cout << *ptr << " ";
}
cout << endl;
// overwrite a name again
*pNico = "Nicolai";
// print all elements again
for (auto ptr : whoMadeCoffee) {
cout << *ptr << " ";
}
cout << endl;
// print some internal data
cout << "use_count: " << whoMadeCoffee[0].use_count() << endl;
} class FileDeleter
{
private:
std::string filename;
public:
FileDeleter(const std::string& fn)
: filename(fn) {
}
void operator () (std::ofstream* fp) {
fp->close(); //close.file
std::remove(filename.c_str()); //delete file
cout << "delete file finish" << endl;
}
}; void sharedPtrTest2()
{
shared_ptr<std::ofstream> fp(new std::ofstream("tmpfile.txt"),
FileDeleter("tmpfile.txt"));
} int _tmain(int argc, _TCHAR* argv[])
{
sharedPtrTest1();
sharedPtrTest2(); return 0;
}

  

shared_ptr的误用

下面是错误示例

int* p = new int;

shared_ptr<int> sp1(p);

shared_ptr<int> sp2(p);

这将产生错误 对于int指针有两个智能指针的内存管理器对其进行管理

sp1 sp2 都对其关联的资源进行释放

正确的代码如下:

shared_ptr<int> sp1(new int);

shared_ptr<int> sp2(sp1);

还有一种隐蔽的情况 也会发生这种错误:

比如在Person 中增加一个函数setParentsAndTheirKids()

void setParentsAndTheirKids(shared_ptr<Person> m = nullptr,
shared_ptr<Person> f = nullptr)
{
mother = m;
father = f;
if (m != nullptr){
m->kids.push_back(shared_ptr<Person>(this));
}
if (f != nullptr){
f->kids.push_back(shared_ptr<Person>(thid));
}
}

int _tmain(int argc, _TCHAR* argv[])
{
string name("nico");
shared_ptr<Person> mom(new Person(name + "'s mom"));
shared_ptr<Person> dad(new Person(name + "'s dad"));
shared_ptr<Person> kid(new Person(name + "name"));

kid->setParentsAndTheirKids(mom,dad);

return 0;
}

但是如果在自己的类中使用包含this的shared_ptr指针 会增加引用计数

导致无法释放

所以引进enable_shared_from_this类

#include <iostream>
#include <string>
#include <vector>
#include <memory>
using namespace std; class Person : public std::enable_shared_from_this<Person> {
public:
string name;
shared_ptr<Person> mother;
shared_ptr<Person> father;
//vector<shared_ptr<Person>> kids;
vector<weak_ptr<Person>> kids; Person(const string& n,
shared_ptr<Person> m = nullptr,
shared_ptr<Person> f = nullptr)
:name(n), mother(m), father(f){
}; ~Person(){
cout << "delete " << name << endl;
} //====================================
void setParentsAndTheirKids(shared_ptr<Person> m = nullptr,
shared_ptr<Person> f = nullptr)
{
mother = m;
father = f;
if (m != nullptr){
m->kids.push_back(shared_ptr<Person>(shared_from_this()));
}
if (f != nullptr){
f->kids.push_back(shared_ptr<Person>(shared_from_this()));
}
}
}; int _tmain(int argc, _TCHAR* argv[])
{
string name("nico");
shared_ptr<Person> mom(new Person(name + "'s mom"));
shared_ptr<Person> dad(new Person(name + "'s dad"));
shared_ptr<Person> kid(new Person(name + "name")); kid->setParentsAndTheirKids(mom,dad); return 0;
}

  

c++11 stl 学习之 shared_ptr的更多相关文章

  1. c++11 stl 学习之 pair

    pair以模板的方式存储两个数据 namespace std {template <typename T1, typename T2>struct pair {// memberT1 fi ...

  2. 侯捷STL学习(11)--算仿+仿函数+适配器

    layout: post title: 侯捷STL学习(十一) date: 2017-07-24 tag: 侯捷STL --- 第三讲 标准库内核分析-算法 标准库算法形式 iterator分类 不同 ...

  3. ###STL学习--关联容器

    点击查看Evernote原文. #@author: gr #@date: 2014-08-23 #@email: forgerui@gmail.com STL中的关联容器. ###stl学习 |--迭 ...

  4. STL学习:STL库vector、string、set、map用法

    本文仅介绍了如何使用它们常用的方法. vector 1.可随机访问,可在尾部插入元素:2.内存自动管理:3.头文件#include <vector> 1.创建vector对象 一维: (1 ...

  5. Effective STL 学习笔记 32 ~ 33

    Effective STL 学习笔记 32 ~ 33 */--> div.org-src-container { font-size: 85%; font-family: monospace; ...

  6. Effective STL 学习笔记: Item 22 ~ 24

    Effective STL 学习笔记: Item 22 ~ 24 */--> div.org-src-container { font-size: 85%; font-family: monos ...

  7. map--C++ STL 学习

    map–C++ STL 学习   Map是STL的一个关联容器,它提供一对一(其中第一个可以称为关键字,每个关键字只能在map中出现一次,第二个可能称为该关键字的值)的数据处理能力.   说下map内 ...

  8. 标准模板库(STL)学习探究之stack

    标准模板库(STL)学习探究之stack queue priority_queue list map/multimap dequeue string

  9. 标准模板库(STL)学习探究之vector容器

    标准模板库(STL)学习探究之vector容器  C++ Vectors vector是C++标准模板库中的部分内容,它是一个多功能的,能够操作多种数据结构和算法的模板类和函数库.vector之所以被 ...

随机推荐

  1. RecycleView 使用自定义CardLayouManager内容无法滚动问题

    1.开始一直反应不过来一个问题:RecycleView不是自带滚动效果吗?为啥子条目还不能全部滚动,显示出来呢? 意识到:只有当RecycleView 适配器中条目数量特别多,才可以滚动. 然而自己的 ...

  2. Dubbo -- Simple Monitor

    一.简介 dubbo-monitor-simple是dubbo提供的简单监控中心,可以用来显示接口暴露,注册情况,也可以看接口的调用明细,调用时间等. Simple Monitor挂掉不会影响到Con ...

  3. cekephp 事务处理

    $sw = $this->Orders->getDataSource(); $sw->begin(); $this->Orders->commit() $this-> ...

  4. Java,JDK动态代理的原理分析

    1. 代理基本概念: 以下是代理概念的百度解释:代理(百度百科) 总之一句话:三个元素,数据--->代理对象--->真实对象:复杂一点的可以理解为五个元素:输入数据--->代理对象- ...

  5. cacti报ERROR: unknown option '--border' 解决方法

    cacti制图报下面提示 if (isset($rrdborder) && $rrdversion >= 1.4) { $graph_opts .= "--border ...

  6. CRTD异常案例及原因

     错误案例: SELECT DEMANDLINEID,SUPPLYORDERID,DEMANDORDERID,QTYALLOCATED,ITEM, A.* FROM ABPPMGR.SUPPLYDMD ...

  7. 【scrapy】爬虫的时候总在提示 KeyError: 'novelLabel'

    调试的时候总是提示 KeyError: 'novelLabel'然后决定断点调试一下, 在def parse_book_list(self, response):方法下,添加print(respons ...

  8. 【转】 UI自动化测试的关注点

    我发现了,大家极度关心自动化测试,尤其是UI自动化测试,虽然现在作为专项测试,离开这些越来越远了,但总能遥想以前,我总能想起自己做nokia的WindowsLive的ui自动化,做web的自动化测试, ...

  9. 2018年全国多校算法寒假训练营练习比赛(第四场)F:Call to your teacher

    传送门:https://www.nowcoder.net/acm/contest/76/F 题目描述 从实验室出来后,你忽然发现你居然把自己的电脑落在了实验室里,但是实验室的老师已经把大门锁上了.更糟 ...

  10. 约束布局 ConstraintLayout

    app:layout_constraintVertical_bias="0.5"app:layout_constraintHorizontal_bias="0.5&quo ...