“C++primer.exe”: 已卸载“C:\WINDOWS\system32\dbghelp.dll”
“C++primer.exe”: 已卸载“C:\WINDOWS\system32\version.dll”
Visual Leak Detector is now exiting.
程序“[1740] C++primer.exe: 本机”已退出,返回值为 0 (0x0)。
代码改为:
#include
#include
#include "vld.h"
using namespace std;
int main()
{
int *n = new int[10];
string *s = new string("hello!\n");
cout << n;
cout << *s;
delete [] n;
delete s;
return 0;
}
输出信息中包含以下语句:
Visual Leak Detector Version 1.0 installed (multithreaded static).
No memory leaks detected.
“C++primer.exe”: 已卸载“C:\WINDOWS\system32\dbghelp.dll”
“C++primer.exe”: 已卸载“C:\WINDOWS\system32\version.dll”
Visual Leak Detector is now exiting.
程序“[4272] C++primer.exe: 本机”已退出,返回值为 0 (0x0)。
作者:one_in_one