2 Star 0 Fork 0

mirrors_ReneNyffenegger/about-boost

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
shared_ptr.cpp 767 Bytes
一键复制 编辑 原始数据 按行查看 历史
René Nyffenegger 提交于 2017-07-05 16:57 . + shared_ptr
#include <iostream>
#include <boost/shared_ptr.hpp>
struct P {
P(int p) : p_(p) {std::cout << "C'tor: " << p_ << std::endl;}
virtual ~P ( ) {std::cout << "D'tor: " << p_ << std::endl;}
void show() {std::cout << p_ << std::endl;}
int p_;
};
typedef boost::shared_ptr<P> Pp;
#define USE_COUNT(p) std::cout << "Use count " #p ": " << p.use_count() << std::endl;
void a(Pp pa) {
USE_COUNT(pa)
Pp pa2 = pa;
USE_COUNT(pa )
USE_COUNT(pa2)
pa2->p_ = 20;
}
int main() {
//Following line: compile error:
//Pp p0 = new P(1);
Pp p1(new P(3));
USE_COUNT(p1)
p1->show();
a(p1);
USE_COUNT(p1);
p1->show();
Pp p2(p1);
USE_COUNT(p2);
Pp p3(p1);
USE_COUNT(p3);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_ReneNyffenegger/about-boost.git
git@gitee.com:mirrors_ReneNyffenegger/about-boost.git
mirrors_ReneNyffenegger
about-boost
about-boost
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385