标签:智能指针

关于智能指针内存泄漏的一点点疑问

其实,本人只是想不懂这程序为啥会内存泄漏,本人单步过了,知道是哪一句导致的,但是想不懂。 // fg.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include<string>   #include<iostream&……

c++关于智能指针的问题

#include <iostream> #include <tr1/memory> using std::tr1::shared_ptr; using std::tr1::weak_ptr; using std::tr1::enable_shared_from_this; class scope:public enable_shar……

有没有这样的智能指针或有没有办法实现这样的智能指针

实际上都是为了偷懒 例如有如下的类 class MyStruct {     public:          void fun(); }; MyStruct *ptr = new MyStruct; ptr->fun(); 想法就是: 有这样一个智能指针,  实现, 在执行ptr->fun();的时候, 自动执行假如为空中, 则不调用fun(……