weak_ptr是shared_ptr得到协助者,可以观察shared_ptr是否过期,weak_ptr不改变引用计数,也不能使用 *,->操作符,是一个很弱的智能指针。例如下面的代码:
#include
#include
#include
using namespace std;
using namespace boost;
class test
{
public:
test()
{
cout
关注
打赏