→ dritchie: 讓operator-回傳MyInt& 09/10 00:36
開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
C++
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
None
問題(Question):
一般來說運算符號可以透過成員函數重新載入
現在如果有多個相同運算符號
是否有辦法在主函數中能一次次重新載入
餵入的資料(Input):
MyInt a(10);
a-1-2-3;
預期的正確結果(Expected Output):
a=4
錯誤結果(Wrong Output):
a=9
程式碼(Code):(請善用置底文網頁, 記得排版)
class MyInt {
int nVal;
public:
MyInt(int n) { nVal = n; }
int ReturnVal() { return nVal; }
int operator - (const int & operand){
nVal=nVal-operand;
return nVal;
}
};
補充說明(Supplement):
使用Xcode
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 112.104.139.199
※ 文章網址: https://www.ptt.cc/bbs/C_and_CPP/M.1441571009.A.5C8.html