1. ホーム
  2. c++

[解決済み] C++エラー:unqualified-idが予想される場合の対処方法

2022-01-29 22:18:42

質問

6行目でこんなエラーが出るんだけど。

error: expected unqualified-id before '{' token

何が悪いのかわからない。

#include <iostream>

using namespace std;

class WordGame;
{               // <== error is here on line 6
public:

    void setWord( string word )
    {
        theWord = word;
    }
    string getWord()
    {
        return theWord;
    }
    void displayWord()
    {
        cout << "Your word is " << getWord() << endl;
    }
private:
    string theWord;
}


int main()
{
    string aWord;
    WordGame theGame;
    cin >> aWord;
    theGame.setWord(aWord);
    theGame.displaymessage();

}

解決方法は?

ここにはセミコロンを入れてはいけません。

class WordGame;

...ただし、クラス定義の最後に1つあるはずです。

...
private:
    string theWord;
}; // <-- Semicolon should be at the end of your class definition