bool TimeManager::operator> (TimeManager input) { //2015.11.30 09.12.02 vs 2015.11.29 09.12.02 //2015.11.30 09.12.02 vs 2015.11.30 09.12.22c //2014 2015 이면 당연히 if (this->solarDate.solarYear > input.getSolarYear()) { return true; } else if (this->solarDate.solarYear < input.getSolarYear()) { return false; } //연도 비교 if (this->solarDate.solarMonth > input.getSolarMonth()) { return true; } //월 비교 else if (this->solarDate.solarMonth < input.getSolarMonth()) { return false; } if (this->solarDate.solarDay > input.getSolarDay()) { return true; } //일 비교 else if (this->solarDate.solarDay < input.getSolarDay()) { return false; } if (this->hour > input.getHour()) { return true; } //일 비교 else if (this->hour < input.getHour()) { return false; } if (this->min > input.getMinute()) { return true; } //일 비교 else if (this->min < input.getMinute()) { return false; } if (this->sec > input.getSecond()) { return true; } //일 비교 else if (this->sec < input.getSecond()) { return false; } return false; }
bool TimeManager::operator==(TimeManager input) { return ((this->hour == input.hour) && (this->min == input.min) && ((int)this->sec == (int)input.sec) && \ (this->solarDate.solarDay == input.getSolarDay()) && (this->solarDate.solarMonth == input.getSolarMonth()) && \ (this->solarDate.solarYear == input.getSolarYear())); }