[C++] 연산자 오버로딩
연산자 오버로딩 기본형의 연산자 클래스는 일종의 타입이다. 기본형에서 가능한 모든 동작은 객체에 대해서도 가능해야하며 객체끼리 연산도 할 수 있어야한다. #include class Time { private: int hour, min, sec; public: Time() {} Time(int h, int m, int s) { hour = h; min = m; sec = s; } void OutTime() { printf("%d:%d:%d\n", hour, min, sec); } const Time AddTime(const Time &other) const { Time t; t.sec = sec + other.sec; t.min = min + other.min; t.hour = hour + other.ho..