[404218]: / Code / C++ / C++ Tutorial Source Files / 42_C++_Inheritance3.cpp

Download this file

37 lines (31 with data), 700 Bytes

 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
#include <iostream>
using namespace std;
class Chef {
public:
void makeChicken(){
cout << "The chef makes chicken" << endl;
}
void makeSalad(){
cout << "The chef makes salad" << endl;
}
void makeSpecialDish(){
cout << "The chef makes bbq ribs" << endl;
}
};
class ItalianChef : public Chef{
public:
void makePasta(){
cout << "The chef makes pasta" << endl;
}
void makeSpecialDish(){
cout << "The chef makes chicken parmesan" << endl;
}
};
int main()
{
Chef chef;
chef.makeSpecialDish();
ItalianChef italianChef;
italianChef.makeSpecialDish();
return 0;
}