这可能是一个包含问题,我在整个代码中都会遇到这些错误,而不仅仅是字符串标识符,例如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;
答案 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
以分号结尾?没必要。