0
菜鳥之前' 或 '...' 問C++錯誤預期 '數字常量
void setName(const std::string& InkClient) { m_appName = InkClient; }
void setCompactName(const std::string& InkClient) { m_appCompactName = InkClient; }
void setVersion(const std::string& 0.1) { m_appVersion = 0.1 ; }
我不知道我可以修復
無效setVersion(常量的std :: string & 0.1){m_appVersion = 0.1; }
需要更多信息。 – jdero
'0.1'不是一個有效的變量名,所以'const std :: string&0.1'不是一個有效的參數聲明。 – ruakh
'const std :: string&0.1' - 這是什麼意思? – AnT