博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何把this指针转换成boost的shared_ptr
阅读量:5344 次
发布时间:2019-06-15

本文共 602 字,大约阅读时间需要 2 分钟。

在使用shared_ptr的时候碰到了这个问题,直接上代码示例,编译: g++ shared_ptr.cpp -I ~/usr_spider/include/ -L ~/usr_spider/lib64  
#include <boost/shared_ptr.hpp>
#include <boost/enable_shared_from_this.hpp>
#include <iostream>
using 
namespace std;
class test: 
public boost::enable_shared_from_this<test> {
    
public:
        
int num;
        boost::shared_ptr<test> get_sharedPtr_from_this(){
             
return shared_from_this();
        }   
};
typedef boost::shared_ptr<test> testPtr;
main(){
    testPtr a(
new test);
    a->num = 
33
    testPtr b = a->get_sharedPtr_from_this();
    cout<<b->num<<endl;
}

 

参考: 

转载于:https://www.cnblogs.com/welkinwalker/archive/2011/10/10/2205248.html

你可能感兴趣的文章
C#中结构体与字节流互相转换
查看>>
session和xsrf
查看>>
Linux目录结构
查看>>
luoguP3414 SAC#1 - 组合数
查看>>
五一 DAY 4
查看>>
(转)接口测试用例设计(详细干货)
查看>>
【译】SSH隧道:本地和远程端口转发
查看>>
图片点击轮播(三)-----2017-04-05
查看>>
直播技术细节3
查看>>
《分布式服务架构:原理、设计于实战》总结
查看>>
java中new一个对象和对象=null有什么区别
查看>>
字母和数字键的键码值(keyCode)
查看>>
IE8调用window.open导出EXCEL文件题目
查看>>
Spring mvc初学
查看>>
有意思的代码片段
查看>>
C8051开发环境
查看>>
VTKMY 3.3 VS 2010 Configuration 配置
查看>>
01_1_准备ibatis环境
查看>>
windows中修改catalina.sh上传到linux执行报错This file is needed to run this program解决
查看>>
JavaScript中的BOM和DOM
查看>>