我只想說我仍然在學習C++,所以我開始使用有關類和結構的模塊,雖然我不明白所有的東西,但我認爲我有點正確。編譯器一直給我的錯誤是:C++錯誤 - 預期'。'之前的主表達式令牌|
錯誤:期望在'。'之前的主表達式。令牌|
這裏是代碼:
#include <iostream>
using namespace std;
class Exam{
private:
string module,venue,date;
int numberStudent;
public:
//constructors:
Exam(){
numberStudent = 0;
module,venue,date = "";
}
//accessors:
int getnumberStudent(){ return numberStudent; }
string getmodule(){ return module; }
string getvenue(){ return venue; }
string getdate(){ return date; }
};
int main()
{
cout << "Module in which examination is written"<< Exam.module;
cout << "Venue of examination : " << Exam.venue;
cout << "Number of Students : " << Exam.numberStudent;
cout << "Date of examination : " << Exam.date
<< endl;
return 0;
}
的問題要求用存取函數,但我不知道我爲什麼要使用存取器。
不是100%肯定它們是如何工作的。
請幫忙。
請格式化,並提供完整的示例代碼。 –