Enabling Memory Leak Detection

来源:互联网 发布:手机淘宝怎样搜店铺 编辑:程序博客网 时间:2024/05/08 04:14

#define CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>

_CrtDumpMemoryLeaks();

 _CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF ); 

原创粉丝点击