VC检查内存泄露

来源:互联网 发布:河源淘宝培训中心位置 编辑:程序博客网 时间:2024/04/29 22:08

在.cpp文件上增添

#ifdef _DEBUG
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include "crtdbg.h"
#define new new(_NORMAL_BLOCK, __FILE__, __LINE__)
#endif