Inheritance
Three modes : Public, Protected, and Private
정의 : class derived-class-name : visibility-mode base-classname
class B {
int a;
public:
int b;
void get_ab();
int get_a(void);
void show_a(void);
};
void B::get_ab() {
a = 5, b = 10;
}
int B::get_a() {
return a;
}
void B::show_a() {
cout << "a = " << a << endl;
}
class D : public B {
int c;
public:
void mul(void);
void display(void);
};
void D::mul() {
c = b * get_a();
}
void D::display() {
cout << "a = " << get_a() << endl;
cout << "b = " << b << endl;
cout << "c = " << c << endl;
}
int main() {
D d;
d.get_ab();
d.mul();
d.show_a();
d.display();
d.b = 20;
d.mul();
d.display();
return 0;
}
class D : private B {
int c;
public:
void mul(void);
void display(void);
};
void D::mul() {
c = b * get_a();
}
void D::display() {
cout << "a = " << get_a() << endl;
cout << "b = " << b << endl;
cout << "c = " << c << endl;
}
int main() {
D d;
d.get_ab();//error
d.mul();
d.show_a();//error
d.display();
d.b = 20;//error
d.mul();
d.display();
return 0;
}
class M {
protected:
int m;
public:
void get_m(int);
};
class N {
protected:
int n;
public:
void get_n(int);
};
class P : public M, public N {
public:
void display(void);
};
void M::get_m(int x) { m = x; }
void N::get_n(int x) { n = x; }
void P::display() {
cout << "m = " << m << endl;
cout << "n = " << n << endl;
cout << "m*n = " << m * n << endl;
}
int main() {
P p;
p.get_m(10);
p.get_n(20);
p.display();
return 0;
}
class M {
public:
void display() {
cout << "M" << endl;
}
};
class N {
public:
void display() {
cout << "N" << endl;
}
};
class P : public M, public N {
public:
void display(void) { M::display(); }
};
int main() {
P p;
p.display();
return 0;
}
class A {
public:
void display() {
cout << "A" << endl;
}
};
class B : public A {
public:
void display() {
cout << "B" << endl;
}
};
int main() {
B b;
b.display(); // B
b.A::display(); // A
b.B::display(); // B
return 0;
}
class student {
protected:
int roll_number;
public:
void set_number(int a) {
roll_number = a;
}
void print_number() {
cout << "Roll No: "
<< roll_number << endl;
}
};
class test :virtual public student {
protected:
float part1, part2;
public:
void set_marks(float x, float y) {
part1 = x; part2 = y;
}
void print_marks() {
cout << "part1 = " << part1
<< endl << "part2 = "
<< part2 << endl;
}
};
class sports :virtual public student {
protected:
float score;
public:
void set_score(float s) {
score = s;
}
void print_score() {
cout << "score = " << score
<< endl;
}
};
class result : public test, public sports {
float total;
public:
void display();
};
void result::display() {
total = part1 + part2 + score;
print_number();
print_marks();
print_score();
cout << "total score = " << total<< endl;
}
int main() {
result student_a;
student_a.set_number(500);
student_a.set_marks(30., 50.);
student_a.set_score(100);
student_a.display();
return 0;
}
class animal {
public:
virtual void cry() = 0;
};
class dog :public animal {
public:
void cry() { cout << "Wal!" << endl; }
};
class cat :public animal {
public:
void cry() { cout << "Nyaoooon!" << endl; }
};
두 가지 유형의 가상 함수
가상 함수(Virtual function) : 파생 클래스에 의해 재정의 될 수 있습니다.
순수 가상 함수(Pure Virtual function) : 파생 클래스에서 재정의해야 한다.
-둘다 런타임의 다형성 기능입니다.
class alpha {
int x;
public:
alpha(int i) {
x = i;
cout << "alpha init" << endl;
}
};
class beta {
float y;
public:
beta(float j) {
y = j;
cout << "beta init" << endl;
}
};
class gamma : public beta, public alpha {
int m, n;
public:
gamma(int a, float b, int c, int d) :
alpha(a), beta(b)
{
//initialization for gamma
m = c;
n = d;
cout << "gamma init" << endl;
}
};
int main() {
gamma g(5, 10.0, 20, 30);
return 0;
}
하나의 클래스는 다른 클래스 멤버를 포함할 수 있다