這是我的課employeeException
函數定義不聲明參數簡單的C++程序
#include <iostream>
#include <string>
using namespace std;
class employeeException
{
public:
employeeException(string);
void printmessage();
private:
string message;
};
int main()
{
employeeException("Heelo");
}
employeeException::employeeException(string message)
{
this->message = message;
}
void employeeException:printmessage()
{
cout<<endl
<<this->message
<<endl;
}
對於一些未知的原因,我在編譯過程中出現此錯誤
函數定義不聲明參數
我不明白這個簡單的程序有什麼問題。當然,我錯過了一些簡單的東西。
雙冒號),不值得回答。 – ScarletAmaranth
*「我無法弄清楚什麼是錯的」*爲什麼不呢?您是否仔細閱讀了錯誤消息中提到的代碼行,*逐個字符*? – abelenky