Binary operator, as Global Function◆ 이항(binary) 연산자의 전역 함수로의 선언 (+, -, ==,!=, > , ● Operator 오버로딩을 전역 함수로 선언(Point::operator 가 아님!) ● Lhs 도 매개변수로써 전달 ☞ 이러한 구현을 위해서는 함수를 friend로 선언하는 것이 일반적 Point operator+(const Point& lhs, const Point& rhs); Point operator-(const Point& lhs, const Point& rhs); Point operator==(const Point& lhs, const Point& rhs); Point operator이러한..