fix comment error and polish cout str
This commit is contained in:
parent
2f38d6fa15
commit
d3912107c4
@ -3,28 +3,28 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
class A {
|
class A {
|
||||||
public:
|
public:
|
||||||
void f(int i){cout<<"…A"<<endl;};
|
void f(int i){cout<<"A::f()"<<endl;};
|
||||||
};
|
};
|
||||||
class B: public A {
|
class B: public A {
|
||||||
public:
|
public:
|
||||||
virtual void f(int i){cout<<"…B"<<endl;}
|
virtual void f(int i){cout<<"B::f()"<<endl;}
|
||||||
};
|
};
|
||||||
class C: public B {
|
class C: public B {
|
||||||
public:
|
public:
|
||||||
void f(int i){cout<<"…C"<<endl;}
|
void f(int i){cout<<"C::f()"<<endl;}
|
||||||
};
|
};
|
||||||
//一旦将某个成员函数声明为虚函数后,它在继承体系中就永远为虚函数了
|
//一旦将某个成员函数声明为虚函数后,它在继承体系中就永远为虚函数了
|
||||||
class D: public C{
|
class D: public C{
|
||||||
public:
|
public:
|
||||||
void f (int){cout<<"…D"<<endl;}
|
void f (int){cout<<"D::f()"<<endl;}
|
||||||
};
|
};
|
||||||
int main(){
|
int main(){
|
||||||
A *pA,a;
|
A *pA,a;
|
||||||
B *pB, b; C c; D d;
|
B *pB, b; C c; D d;
|
||||||
pA=&a; pA->f(1); //调用A::f
|
pA=&a; pA->f(1); //调用A::f
|
||||||
pB=&b; pB->f(1); //调用A::f
|
pB=&b; pB->f(1); //调用B::f
|
||||||
pB=&c; pB->f(1); //调用A::f
|
pB=&c; pB->f(1); //调用C::f
|
||||||
pB=&d; pB->f(1); //调用A::f
|
pB=&d; pB->f(1); //调用D::f
|
||||||
system("pause");
|
system("pause");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user