问题背景:
用过enable_shared_from_this的基本都知道,要正常使用这个类,生成的对象必须由智能指针管理.那为何一定要用智能指针呢?网上很多,基本讲的都是因为:如果不用智能指针,作为基类的enable_shared_from_this<A>没有初始化,生成的对象没有计数器,那它又是如何与智能指针关联起来的呢?
代码:
书上的代码,引出问题点;没啥其它特别的用处
#include <iostream>
#include <memory>
using namespace std;
class A:public enable_shared_from_this<A>
{
public:
A(){
cout << "call constructor" << endl;
}
~A(){
cout << "call destructor" << endl;
}
shared_ptr<A> getSelf(){
return shared_from_this();
}
};
int main()
{
shared_ptr<A> sp1{new A};//A a;
// A a;
// shared_ptr<A> sp1(&a);
shared_ptr<A> sp2 = sp1->getSelf();//智能指针是为了管理堆上的内容;不是shared_ptr<A>会发生一异常
cout << sp2.use_count() << endl;
return 0;
}
相关知识点:
- ADL(可参考C++ template这本书)
- C++ 类及继承在内存中的布局
- 友元类
原理解释:
注:ubuntu下不好对图片标记就直接弄了截图了
首先看enable_shared_from_this模板类的实现,在类的内部(680行)可以看到有__shared_ptr友元类,这个是shared_ptr这个智能指针的基类(ps:在shared_ptr_base.h里实现),就说明__shared_ptr可以使用enable_shared_from_this的函数,也就是671/676行这两个函数
在__shared_ptr类中跟踪__enable_shared_from_this_base这个函数,可以发现这个函数在1382行的函数中使用了(图二), 而1380行这个函数在基类__shared_ptr的构造函数中使用.
总结,当我们使用了shared_ptr,先调用它的基类__shared_ptr的构造函数,如果实现的类有继承的话,在这个构造函数中就已经关联了enable_shared_from_this(通过图二1380行的函数),没有则是在构造函数中使用图二1388行的函数.
参考书籍:
<<C++服务器开发精髓>>
<<C++ template>>
随手一记,这篇写得比较水~~~~~~~~