首页 > 代码库 > windows C++内存检测
windows C++内存检测
作为一个C++程序员,一个简单例子更容易理解
#include "stdafx.h"
#include<windows.h>
#ifdef _DEBUG
#define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK,__FILE__,__LINE__)
#else
#define DEBUG_CLIENTBLOCK
#endif
#define _CRTDBG_MAP_ALLOC
#include <crtdbg.h>
#ifdef _DEBUG
#define new DEBUG_CLIENTBLOCK
#endif
using namespace std;
int _tmain(int argc,char* argv[])
{
int *p = new int();
_CrtDumpMemoryLeaks();
return 0;
}
运行完成后,查看输出窗口。
-->e:\program\test\memleaks\memleaks\memleaks.cpp(23) : {128} client block at 0x0066AF90, subtype 0, 4 bytes long.
这就是我们想要的结果。
windows C++内存检测
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。