赞
踩
- #define _CRTDBG_MAP_ALLOC
- #include <stdlib.h>
- #include <crtdbg.h>
-
- using namespace std;
-
- #ifdef _DEBUG
- #ifndef DBG_NEW
- #define DBG_NEW new ( _NORMAL_BLOCK , __FILE__ , __LINE__ )
- #define new DBG_NEW
- #endif
- #endif // _DEBUG
-
- int main()
- {
- _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
-
- int* pA = new int;
-
- return 0;
- }
参考博客:
vld 官方文档:Home · KindDragon/vld Wiki · GitHub
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。