C程序内存泄漏检测工具

VisualC++ debugger 和 CRT 库 VC++2010版的IDE操作如下

第一步: 包含以下头文件

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

第二步: 接管 new 操作符

#ifdef _DEBUG
#ifndef DBG_NEW
#define DBG_NEW new ( _NORMAL_BLOCK , FILE ,LINE)
#define new DBG_NEW
#endif
#endif

第三步: 在代码结束出输出内存泄漏信息

_CrtDumpMemoryLeaks();

内存泄漏工具:

Windows : Purify,BoundsCheaker、Deleaker、VisualLeak Detector(VLD),

Linux 平台:Valgrind memcheck

具体操作代码如下:

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

#include <stdlib.h>
#include <iostream>
#include <Windows.h>

using namespace std;

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

void A_live() {
	int * p = new int[1024];
	//一直使用
	p[0] = 0;
	//申请的内存必须要“还”

	//delete[] p; //添加后解决内存泄漏问题
}

void B_live() {
	int * p = new int[1024];
	//正常的使用
	p[0] = 0;
	delete[] p;	//还内存
}

int main(void) {

	for (int i = 0; i < 5; i++) {
		A_live();
		Sleep(50);
	}

	_CrtDumpMemoryLeaks();
	system("pause");
	return 0;
}

内存泄漏检测工具显示效果:
在这里插入图片描述
Detected memory leaks! 意思是:检测内存泄漏!

内存泄漏已解决状态:
在这里插入图片描述

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

学无止境12138

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值