避免C ++中内存泄漏的一般准则 [英] General guidelines to avoid memory leaks in C++

查看:85
本文介绍了避免C ++中内存泄漏的一般准则的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

什么是一些一般的提示,以确保我不泄漏内存在C ++程序?如何确定谁应该释放已经动态分配的内存?

What are some general tips to make sure I don't leak memory in C++ programs? How do I figure out who should free memory that has been dynamically allocated?

推荐答案



查看 Boost lib TR1 智能指针

此外,智能指针现在是C ++标准的一部分,名为 C ++ 11 < a>。

Instead of managing memory manually, try to use smart pointers where applicable.
Take a look at the Boost lib, TR1, and smart pointers.
Also smart pointers are now a part of C++ standard called C++11.

这篇关于避免C ++中内存泄漏的一般准则的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆