我试图使用_CrtDumpMemoryLeaks()来显示我的程序中的内存泄漏.
但它没有显示任何东西,除非返回0,如果没有内存泄漏,1如果有泄漏的话.
Detected memory leaks! Dumping objects -> D:\VisualC++\CodeGuru\MemoryLeak\MemoryLeak.cpp(67) : {60} normal block at 0x00324818,4 bytes long. Data: <,> 2C 00 00 00 Object dump complete.
解决方法
从以下
link下载示例.您必须设置以下参数才能将输出定向到控制台.
// Send all reports to STDOUT _CrtSetReportMode( _CRT_WARN,_CRTDBG_MODE_FILE ); _CrtSetReportFile( _CRT_WARN,_CRTDBG_FILE_STDOUT ); _CrtSetReportMode( _CRT_ERROR,_CRTDBG_MODE_FILE ); _CrtSetReportFile( _CRT_ERROR,_CRTDBG_FILE_STDOUT ); _CrtSetReportMode( _CRT_ASSERT,_CRTDBG_MODE_FILE ); _CrtSetReportFile( _CRT_ASSERT,_CRTDBG_FILE_STDOUT );