标签:
1.在整个程序的代码开头(比如stdafx.h文件最前边)加上: #define CRTDBG_MAP_ALLOC #include <stdlib.h> #include <crtdbg.h>
2.在出口(比如~CApp())加上: _CrtDumpMemoryLeaks();
注意:若添加的位置不正确,得到的结果可能没有意义。
VC++中查找内存泄漏最简单的方法
原文地址:http://www.cnblogs.com/dgx/p/5491491.html