C++ 常用代码段整理

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

 

上一篇:next.js window is not defined


下一篇:Uncaught ReferenceError: $ is not defined指向“http://localhost:8080/js/jquery-3.5.1.js”的 <script> 加载失败