Visual Studio 2008 C++ 内存泄露检测
1、安装Viual Leak2、新建一个项目,项目属性配置请见
3、在程序中添加如下代码:
#include "stdafx.h"
#include "vld.h"
#include<iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
char *name = new char;
cin>>name;
cout<<name<<endl;
return 0;
}
4、运行程序,就会发现输出部分有这样的提示:
从而找到内存泄露的地方
文档来源:51CTO技术博客https://blog.51cto.com/u_10486491/3215410
页:
[1]