기반 클래스에 기본 생성자가 없을 때 [디딤돌 C++]
▷ Program.cpp
//기반 클래스에 기본 생성자가 없을 때
#include <iostream>
#include <string>
using namespace std;
class Musician
{
string name;
public:
Musician(string name)
{
this->name = name;
cout<<"음악가 생성자"<<endl;
}
~Musician()
{
cout<<"음악가 소멸자"<<endl;
}
void Play()
{
cout<<"딩동댕"<<endl;
}
void View()
{
cout<<"이름:"<<name<<endl;
}
};
class Pianist:
public Musician //Musician 클래스를 기반으로 파생한 Pianist 클래스 정의
{
public:
Pianist(string name):Musician(name) //기반 클래스 생성자 초기화
{
cout<<"피아니스트 생성자"<<endl;
}
~Pianist()
{
cout<<"피아니스트 소멸자"<<endl;
}
};
int main()
{
Pianist *pianist = new Pianist("홍길동");
pianist->View();
pianist->Play();
delete pianist;
return 0;
}
* 디딤돌 C++ 28. 파생 개체의 생성과 소멸 과정에서
'C++ > 디딤돌 C++' 카테고리의 다른 글
무효화 [디딤돌 C++] (0) | 2016.04.14 |
---|---|
접근 지정자 protected [디딤돌 C++] (0) | 2016.04.14 |
파생 개체의 생성과 소멸 과정 [디딤돌 C++] (0) | 2016.04.14 |
상속 개요[디딤돌 C++] (0) | 2016.04.14 |
학생 클래스 (캡슐화 최종 실습) [디딤돌 C++] (0) | 2016.04.14 |