错误C2061:语法错误:标识符'字符串'

时间:2012-05-14 18:53:14

标签: c++ visual-studio-2010

这可能是一个包含问题,我在整个代码中都会遇到这些错误,而不仅仅是字符串标识符,例如error C2146: syntax error : missing ';' before identifier 'getName'error C2146: syntax error : missing ';' before identifier 'name'

这是一个示例类:

#include "stdafx.h"

class participant
{
public:
participant(int id, string name);
~participant(void);

int getId();
string getName();

private:
        int id;
    string name;
};

这是我的stdafx.h文件:

#pragma once

#include "targetver.h"

#include <stdio.h>
#include <tchar.h>
#include <iostream>
#include <string>
#include <sstream>
#include <vector>
#include <list>
#include "day.h"
#include "appointment.h"
#include "extendedAppointment.h"
#include "participant.h"
#include "calendar.h"
using namespace std;

#define no_such_appointment_error 20;
#define conflicting_appointments_error 21;
#define noSuchDayError 22;
#define incorrectAppointmentError 23;

1 个答案:

答案 0 :(得分:7)

所以我编译你的代码as-posted没有你的自定义头文件,它工作得很好。基于此,我打算在其中一个头文件中出现问题:

#include "day.h"
#include "appointment.h"
#include "extendedAppointment.h"
#include "participant.h"
#include "calendar.h"

它可能是一个宏,一个没有以分号结尾的类/结构,等等。检查出来。

最后,一些切线问题:

首先,using头文件中的命名空间是一个糟糕的主意。现在包含您标题的任何文件都包含using namespace std;(这很糟糕)。您可能不希望在包含stdafx.h的每个文件中包含那么多头文件。

其次,删除后,string立即变为未定义(改为使用std :: string)。

最后,为什么你的#define以分号结尾?没必要。