c++1 클래스 간에 연관관계 1. C++에서 클래스 간의 연관관계는 프로그램에서 상대 클래스를 가리키는 데이터 멤버로 구현된다. 예를 들어 아래와 같은 연관관계가 있다고 하면 class Client { private: String name; int age; public: String getName() { return this->name; } int getAge() { return this->age; } void writeContact() { } }; class Salesman { private: Client* client; public: void setClient(Client* client) { this->client = clinet; } void explainContact() { String name = this->client->.. 2012. 12. 6. 이전 1 다음