c++ 상속관계에서 생성자와 소멸자

zoopi의 이미지

안녕하세요.

c++에서

예를 들어 아래와 같은 코드가 있다고 한다면

#include

using namespace std;

class A
{
public:
A() { cout << "기반 클래스 생성자" << endl; };
virtual ~A() { cout << "기반 클래스 소멸자" << endl; };
};

class B : public A
{
public:
B() { cout << "파생 클래스 생성자" << endl; };
virtual ~B() { cout << "파생 클래스 소멸자" << endl; };
};

int main()
{
A *a = new B;
delete a;

return 0;
}

실행결과는

기반 클래스 생성자
파생 클래스 생성자
파생 클래스 소멸자
기반 클래스 소멸자

라고 나온다고 알고 있습니다.

또한 기반클래스의 소멸자가 가상함수로 지정되지 않으면 정적결합으로 포인터의 타입에 따라서

파생 클래스의 소멸자가 호출되지 않는다는 것도 알고 있습니다.

근데 제가 궁금한것이..

파생 클래스의 객체를 생성하면(스택에 생성하든지 또는 힙에 생성하든지)

파생 클래스의 생성자에서 기반 클래스의 생성자를 명시적으로 호출하지 않을때

파생 클래스의 생성자가 실행되지 전에 기반 클래스의 기본 생성자를 호출하는 코드가

자동으로 삽입되어 기반 클래스의 생성자가 먼저 호출되는데

왜 기반 클래스의 소멸자는 가상함수로 지정되어야만 호출되는지요?

포인터의 타입에 의존한다면 파생 클래스의 객체를 생성할때도 포인터의 타입에 따라서

기반 클래스의 생성자만을 호출할 것이지, 이때는 자동으로 코드가 삽입되고

왜 객체가 소멸될때만 굳이 가상함수로 지정을 해줘야 하는지 모르겠습니다.

책이나 기타 참고한 자료로는

생성자는 상속되지 않으므로 가상함수일수 없다 라고 생성자에 관한 설명은 나오는데

소멸자또한 해당 클래스에 특화적이기 때문에 상속관계 포함되지 않는거 아닌가요?

왜 굳이 소멸자만 가상함수 지정이 필요한것인지 명확하게 모르겠습니다..

부디 정확한 답변 부탁드리겠습니다.

Scarecrow의 이미지

new B라는 표현으로 생성하고 있습니다.
그러니 B의 생성자를 호출하는 것은 자연스럽습니다.

그렇게 만들어 진 것을 A라는 자료형으로 취급합니다.

virtual이 있어 혹시 A의 것 말고
오버라이딩된 다른 것이 있나 확인하고 그걸 사용합니다.

zoopi의 이미지

답변 감사합니다.
왜그럴까 무척 궁금했는데 간단하고 명쾌한 답변을 해주셨네요.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.