開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
VC++
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
no
問題(Question):
class Time {
public:
const Time operator+(const Time &) const;
(1) (2) (3)
…
};
請問第(3)個const是代表什麼意思?
第(1)個const應該是指回傳的Time是不可以被修改
第(2)則是說 輸入的 Time reference不能被修改
那第(3)是代表什麼呢?