FMD开发文集 -- MFC调试模式下new操作符的特殊处理

2016-01-29 12:21 39 1 收藏

FMD开发文集 -- MFC调试模式下new操作符的特殊处理,FMD开发文集 -- MFC调试模式下new操作符的特殊处理

【 tulaoshi.com - C语言心得技巧 】

FMD开发文集 -- MFC调试模式下new操作符的特殊处理
作者:冯明德

一、在调试模式下,new操作符号通过宏定义转换成了调试版本。

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com)

在文件头经常可以发现以下语句:

#ifdef _DEBUG#undef THIS_FILEstatic char THIS_FILE[]=__FILE__;#define new DEBUG_NEW#endif
其中,将new定义为DEBUG_NEW

二、DEBUG_NEW的处理

调试版本的new操作函数:void* AFX_CDECL operator new(size_t nSize, LPCSTR lpszFileName, int nLine);

宏替换:#define DEBUG_NEW new(THIS_FILE, __LINE__) //文件名、行号被传入,供调试输出。

实际代码如下:

void* AFX_CDECL operator new(size_t nSize, LPCSTR lpszFileName, int nLine){return ::operator new(nSize, _NORMAL_BLOCK, lpszFileName, nLine);}//分配内存void* __cdecl operator new(size_t nSize, int nType, LPCSTR lpszFileName, int nLine){#ifdef _AFX_NO_DEBUG_CRTUNUSED_ALWAYS(nType);UNUSED_ALWAYS(lpszFileName);UNUSED_ALWAYS(nLine);return ::operator new(nSize);#elsevoid* pResult;#ifdef _AFXDLL_PNH pfnNewHandler = _pfnUninitialized;#endiffor (;;){pResult = _malloc_dbg(nSize, nType, lpszFileName, nLine);if (pResult != NULL)return pResult;#ifdef _AFXDLLif (pfnNewHandler == _pfnUninitialized){AFX_MODULE_THREAD_STATE* pState = AfxGetModuleThreadState();pfnNewHandler = pState-> m_pfnNewHandler;}if (pfnNewHandler == NULL || (*pfnNewHandler)(nSize) == 0)break;#elseif (_afxNewHandler == NULL || (*_afxNewHandler)(nSize) == 0)break;#endif}return pResult;#endif}#endif //_DEBUG
(全文完)

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com)

来源:http://www.tulaoshi.com/n/20160129/1485728.html

延伸阅读
unit WinForm;interfaceuses System.Drawing, System.Collections, System.ComponentModel, System.Windows.Forms, System.Data;type TWinForm = class(System.Windows.Forms.Form) {$REGION 'Designer Managed Code'} strict private /// summary /// Required designer variable. /// /summary Components: System....
标签: SQLServer
  cube操作符 要使用cube,首先要了解group by 其实cube和rollup区别不太大,只是在基于group by 子句创建和汇总分组的可能的组合上有一定差别, cube将返回的更多的可能组合。如果在 group by 子句中有n个列或者是有n个表达式的话, sqlserver在结果集上会返回2的n-1次幂个可能组合。 注意: 使用cube操作符时,最多可以有10个分组表达...
为什么operator=操作符返回引用 赵湘宁 问题:        MSDN文档中解释到:operator=操作符缺省情况下返回引用—— TYPE& TYPE::operator=(const TYPE&) 为什么呢?我对此的理解...
C++ 中重载 + 操作符的正确方法 作者:Danny Kalev 编译:MTT 工作室 原文出处:Overloading Operator + the Right Way 摘要: 本文概要性地介绍如何选择正确的策略来为用户定义类型重载 + 操作符。 用户...
与C一样,C++使用布尔表达式简化求值法(short-circuit evaluation)。这表示一旦确定了布尔表达式的真假值,即使还有部分表达式没有被测试,布尔表达式也停止运算。例如: char *p; ... if ((p != 0) && (strlen(p) 10)) ... 这里不用担心当p为空时strlen无法正确运行,因为假如p不等于0的测试失败,st...

经验教程

712

收藏

42
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部