虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

您现在的位置是:虫虫下载站 > 资源下载 > Windows CE > This code detects memory leaks in embedded VC++ almost the same way crtdbg does in VC++. At the end

This code detects memory leaks in embedded VC++ almost the same way crtdbg does in VC++. At the end

  • 资源大小:3 K
  • 上传时间: 2015-05-07
  • 上传用户:feigo156
  • 资源积分:2 下载积分
  • 标      签: the embedded detects almost

资 源 简 介

This code detects memory leaks in embedded VC++ almost the same way crtdbg does in VC++. At the end of program execution it will display in the debug window if there were any memory leaks and how the memory looks so you can identify where your memory leak occurred. It will display in the debug window a message saying no memory leaks detected if there are no memory leaks. Similar to what crtdbg.h does in VC++. The code detects memory leaks generated with calls to new and delete operators in C++. The code doesn t detect memory leaks generated with C functions: malloc, calloc, free, but that can be done in the future. Let me know and I will program it.

相 关 资 源

您 可 能 感 兴 趣 的