728x90
가상함수 말고도 virtual키워드를 붙여줘야 할 대상 = 소멸자
가상소멸자
#include <iostream>
using namespace std;
class First
{
private:
char *strOne;
public:
First(char *str)
{
strOne = new char[strlen(str) + 1];
}
~First()
{
cout <<"~First()" <<endl;
delete []strOne;
}
};
class Second:public First
{
private:
char *strTwo;
public:
Second(char *str1, char *str2) : First(str1)
{
strTwo = new char[strlen(str2) + 1];
}
~Second()
{
cout <<"~Second()" <<endl;
delete []strTwo;
}
};
int main(void)
{
First *ptr = new Second("simple", "complex");
delete ptr;
return 0;
}
이같은 경우 객체의 소멸을 First형 포인터로 명령 -> First클래스의 소멸자만 호출됨 ->메모리 누수 발생.
따라서
virtual ~First()
{
cout <<"~First()" <<endl;
delete []strOne;
}
이렇게 앞에 virtual을 붙여야 함.
728x90
'LANG > C++' 카테고리의 다른 글
[C++]10-2.단항 연산자의 오버로딩 (0) | 2023.05.18 |
---|---|
[C++]10-1.연산자 오버로딩의 이해와 유형 (0) | 2023.05.18 |
[C++]08-2.가상함수(Virtual Function) (1) | 2023.05.16 |
[C++]프로그래머스 정수 내림차순으로 배치하기 (0) | 2023.05.14 |
[C++]08-1.객체 포인터의 참조관계 (0) | 2023.05.14 |