1. 클래스 정의클래스를 정의할 때는 데이터 멤버와 멤버 함수를 잘 구조화해야 합니다.cppclass Rectangle {private: double width; double height;public: Rectangle(double w, double h) : width(w), height(h) {} double area() const { return width * height; } void setWidth(double w) { width = w; } void setHeight(double h) { height = h; }};2. 접근 제어private: 클래스 외부에서 접근할 수 없음.protected: 서브 클래스에서..