멤버 메서드의 활용 멤버 메서드는 선언과 정의를 분리하는 것이 좋음 함수 내에서 다른 함수를 참조 하는 것처럼 멤버 메서드 내에서 다른 메서드를 참조할 수 있기 때문 #include using namespace std; class Vector2 { public: // Vector2() : x(0), y(0) {} Vector2(); // Vector2(float x, float y) : x(x), y(y) {} Vector2(float x, float y); // get함수는 const로 선언하는 것이 좋음 // float GetX() const { return x; } float GetX() const; // float GetY() const { return y; } float GetY() const;..