由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - [合集] 关于查内存泄露
相关主题
VC++ 中的 memory leak problem不同compiler速度可以差很远吗?
问个超简单的C问题After build,how to run the program on visual C# 2008
c++的问题C++现在写起来真舒服啊
effective C++里的memory pool 一问:SQL debug step into a store procedure from another one (转载)
why do we still use dynamic allocation?大家不觉得这篇文章很有道理么?未来语言的趋势?
how to debug mpi?为什么用try catch不住exception?
能否给些讲debug经验的文章和书籍 (转载)关于内存泄漏
一个debug的问题alloc这个函数究竟做些啥活呢?
相关话题的讨论汇总
话题: include话题: crtdbg话题: main话题: function话题: df
进入Programming版参与讨论
1 (共1页)
b***y
发帖数: 2799
1
☆─────────────────────────────────────☆
wealdg (wwwnet) 于 (Sun Feb 3 22:23:04 2008) 提到:
有一巨大的程序如下:
In the main program:
#include "A.h"
#include "B.h"
int main()
{
}
in A.cpp:
#include "C.h"
#include "D.h"
#include "E.h"
Function A1
Function A2
在类B C D E 中仍会调用很多其他的类,在监测内存泄露时,是否只是在主程序(MAIN
)中,加上
#define _CRTDBG_MAP_ALLOC
#include
#include
#include "A.h"
#include "B.h"
//#ifdef _DEBUG
//_CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF );
//#endif
int mai
1 (共1页)
进入Programming版参与讨论
相关主题
alloc这个函数究竟做些啥活呢?why do we still use dynamic allocation?
array allocation in chow to debug mpi?
"brk()" 和 mmap() 有什么区别? (转载)能否给些讲debug经验的文章和书籍 (转载)
C++一个string的小问题一个debug的问题
VC++ 中的 memory leak problem不同compiler速度可以差很远吗?
问个超简单的C问题After build,how to run the program on visual C# 2008
c++的问题C++现在写起来真舒服啊
effective C++里的memory pool 一问:SQL debug step into a store procedure from another one (转载)
相关话题的讨论汇总
话题: include话题: crtdbg话题: main话题: function话题: df