飞道的博客

C++里怎么样让类对象删除时自动释放动态分配的内存?

266人阅读  评论(0)

经常有这样的需求,在一个类里一些成员变量需要动态地分配内存,以前是把这个成员声明为指针,然后在构造函数里指定为NULL类型,然后在析构函数里判断这个指针是否分配了内存,如果分配了就进行删除。这种方式需要人工来做,工作量有点大,能否有更加高效的,能否有偷赖的方式呢?这是有的,如下的例子:


  
  1. #include <memory>
  2. class widget
  3. {
  4. private:
  5. std:: unique_ptr< int> data;
  6. public:
  7. widget( const int size) { data = std::make_unique< int>(size); }
  8. void do_something() {}
  9. };
  10. void functionUsingWidget() {
  11. widget w(1000000); // lifetime automatically tied to enclosing scope
  12. // constructs w, including the w.data gadget member
  13. // ...
  14. w.do_something();
  15. // ...
  16. } // automatic destruction and deallocation for w and w.data

在这里自动地分配1000000个int,当w对象不要时,就自动删除了。是利益于使用std::unique_ptr,从这里就可以学习到这个智能指针的使用了,它主要用来私有的数据成员。

 


转载:https://blog.csdn.net/caimouse/article/details/105025780
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场