C++

overriding

함수 오버라이딩

  • 개와 고양이 클래스를 따로 생성하여 동물 클래스에 상속받기
  • 울음소리를 오버라이딩
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include <iostream>

using namespace std;

class Animal
{
public:
void cry()
{
cout << "짖는소리" << endl;
}
};

class Dog : public Animal
{
public:
void cry()
{
cout << "개짖는소리 왈왈" << endl;
}
};

class Cat : public Animal
{

public:
void cry()
{
cout << "고양이 짖는소리 냐옹" << endl;
}
};



int main()
{
Dog d;
Cat c;

d.cry();
c.cry();

return 0;
}
Share