开发平台(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)是代表什么呢?