memory leakage

本文通过一个简单的C++程序演示了如何使用Visual Studio的调试工具来检测内存泄漏。通过定义宏并包含必要的头文件,启用内存泄漏检查标志,可以跟踪内存分配和释放情况。示例代码展示了如何创建一个看似简单的内存泄漏,并提供了调试内存泄漏的方法。
摘要由CSDN通过智能技术生成
// compile with: cl testMemLeak.cpp -D_DEBUG /MTd -Od -Zi -W3 /link -verbose:lib /debug
/*
 * This program concentrates on allocating and freeing memory
 * blocks to test the functionality of the _crtDbgFlag flag..
 */
 /*
 * The memory leakage info is output by OutputDebugString, which can be catched by DebugView
 *
 */

// the 1st 3 line MUST put top most
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>

#include <vector>
#include <windows.h>

#ifdef _DEBUG
//#define new   new(_NORMAL_BLOCK, __FILE__, __LINE__)
#endif

inline void EnableMemLeakCheck()
{
   _CrtSetDbgFlag(_CrtSetDbgFlag(_CRTDBG_REPORT_FLAG) | _CRTDBG_LEAK_CHECK_DF);
}

void main()
{
   EnableMemLeakCheck();
   //int* leak = new int[10];
   //malloc_(100);
   //_malloc_dbg(100, _NORMAL_BLOCK, __FILE__, __LINE__);
   std::vector<int> v(10);
   v.resize(1);
   v.reserve(100);
}

/*
Modify xmemory
void deallocate(pointer _Ptr, size_type)
        {    // deallocate object at _Ptr, ignore size
        operator delete(_Ptr);
        }
to test memory leakage in STL
*/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值