编译时遇到如下错误error C2061: syntax error : identifier 'THIS_FILE'

来源:互联网 发布:3d电子相册软件下载 编辑:程序博客网 时间:2024/04/29 05:37

上午写程序时,加入了前些写的一个类,编译时遇到如下错误:
...error C2061: syntax error : identifier 'THIS_FILE'
.../new(35) : error C2091: function returns function
.../new(35) : error C2809: 'operator new' has no formal parameters
.../new(36) : error C2061: syntax error : identifier 'THIS_FILE'
.../new(37) : error C2091: function returns function
很奇怪,昨天这个类测试过的,没问题呀,上网查了一下,终于发现问题之所在。

解决方法:

新加入的类是CSelectServer,该类里用到了STL,该类在HouServer.cpp里调用,在HouServer.cpp包含CSelectServer.h文件时写成了如下这样:
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
#include "SelectServer.h"
上网搜索一遍,发现出现这些错误与STL头文件和VC6在CPP文件里生成的几行代码有关,STL头文件是指以下几行:

#pragma warning (disable:4786)
#include <list>
using namespace std;

VC6在CPP文件里生成的几行代码指以下几行:

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
STL头文件要写在VC6在CPP文件里生成的几行代码之前,谨记!我的 "SelectServer.h"文件里包含了STL头文件,当在其它cpp文件里包含"SelectServer.h"文件时一定要将#include"SelectServer.h"放在VC6生成的那几行代码之前!所以改成下面这样就编译通过。
#include "SelectServer.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

 


本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/hzyong_c/archive/2009/02/20/3913692.aspx