-2
我的班級我的頭文件中定義,在我的.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發生錯誤:預期表達式。也是一樣,當我嘗試:
bool oof = Card::foo(const std::string &trump);
bool oof = foo(const std::string &trump) const;
'bool oof = foo(王牌);'你讓它太複雜了。 –
爲什麼不包含const std :: string? – Goldname
他們爲什麼要這樣? –