#ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif 语句解释
VS2010环境下,添加MFC Class时,程序会自动生成框架代码,cpp文件的include下面有如下语句:
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif以下是这段代码的相关解释:
#ifdef _DEBUG //如果定义了_DEBUG,
转载
2013-04-12 15:18:40 ·
3151 阅读 ·
0 评论