virutal destructor 썸네일형 리스트형 [C++] Virtual 소멸자 곧바로 예제부터 보자. #include using namespace std; class AAA { char* str1; public: AAA(char* _str1){ str1= new char[strlen(_str1)+1]; strcpy(str1, _str1); } ~AAA(){// virtual ~AAA() cout 더보기 이전 1 다음