标签:code port visual amp set 整理 crt leak nbsp
1、检查内存泄漏:
头文件
// MS Visual C++ memory leak debug tracing #if defined(_MSC_VER) && defined(_DEBUG) # define _CRTDBG_MAP_ALLOC # include <crtdbg.h> #endif
source文件
// MS Visual C++ memory leak debug tracing #if defined(_MSC_VER) && defined(_DEBUG) _CrtSetDbgFlag(_CrtSetDbgFlag(_CRTDBG_REPORT_FLAG) | _CRTDBG_LEAK_CHECK_DF); #endif
标签:code port visual amp set 整理 crt leak nbsp
原文地址:https://www.cnblogs.com/taofengfeng/p/14343998.html