私のクラスは私のヘッダファイルで定義されている、と私は私の.cppファイルに:クラスの外部のメンバ関数でメンバ関数をどのように呼び出すのですか?
bool Card::foo(const std::string &trump) const {...}
bool Card::bar(const std::string &trump) const {
bool oof = foo(const std::string &trump);
}
これが何らかの理由で機能していません。 XCodeがエラーを起こしています:Expected Expression。同じことは、私がしようとしたときに行く:
bool oof = Card::foo(const std::string &trump);
bool oof = foo(const std::string &trump) const;
'bool oof = foo(trump);'あなたはそれをあまりにも複雑にしています。 –
const std :: stringが含まれていないのはなぜですか? – Goldname
なぜそうなるはずですか? –