boost::asio(2):shared
程序员文章站
2022-05-19 16:15:26
...
这就得从智能指针说起,智能指针就是利用一个变量的构造和析构函数来动态管理一个指针。 说白了就是:构造--new;析构--delete 我们可以很容易写一个智能指针: template class Tclass TAutoPtr{public: TAutoPtr() { m_t = new T(); cout TAutoPtr::TAutoPt
这就得从智能指针说起,智能指针就是利用一个变量的构造和析构函数来动态管理一个指针。
说白了就是:构造-->new;析构-->delete
我们可以很容易写一个智能指针:
templateclass TAutoPtr { public: TAutoPtr() { m_t = new T(); cout 使用: int main(int argc, char** argv) { TAutoPtrtt; return 0; }
这没有问题,很OK。
boost::asio就提供了该方法,可以迅速让shared_ptr来管理你的类。
但是这样就导致了一个问题,当你的类派生之enable_shared_from_this的时候,无法在类成员函数里面使用shared_from_this()获取类指针。
如下的用法是错误:
class B { public: B(): x_(4) { cout p(this); cout x_ x(new B); x->f(); return 0; }
输出为:B::B()
4
B::~B()
B::~B()两次析构同一个对象,发生灾难性后果。
同样,如下的用法也是错误的:
class A : public enable_shared_from_this { public: A() { cout x_ p = shared_from_this(); //cout x_ f(); return 0; }虽然我们已经将类A派生之enable_shared_from_this,但是我们使用的时候并没有用shared_ptr包装类A。也错误。
总结如下:
1. 将该类派生之enable_shared_from_this。例如:class A : public enable_shared_from_this
2. 使用的时候必须加上shared_ptr abc(new A())
推荐阅读
-
[20190416]完善shared latch测试脚本2.txt
-
libiconv.so.2 cannot open shared object file: No such file or directory
-
libmatio.so.2: cannot open shared object file: No such file or directory
-
cv2报错ImportError: libXrender.so.1: cannot open shared object file 解决
-
boost笔记2
-
boost笔记2
-
C++ https server based on boost asio and beast
-
boost库使用—asio库
-
Boost Asio要点概述(二)
-
Boost.Asio初步(二)