this1 Class Class는 언제 사용하는가? 구조체와 관련 함수를 같이 사용하고 싶을 때 1. Constructor, 생성자 멤버변수 초기화 2. Destructor, 소멸자 프로그램 종료시 멤버변수 자동 소멸, 메모리 관리 class BSTNode { private: int key; BSTNode *l, *r; public: BSTNode(int key=0) { this->key = key; this->l = NULL; this->r = NULL; } ~BSTNode() { delete l; delete r; } int get_key() { return key; } void set_key(int key_changed) { this->key = key_changed; } BSTNode* get_left() { retu.. 2019. 6. 8. 728x90 이전 1 다음