- 论坛徽章:
- 0
|
- class A
- {
- public:
- void f( int a ){ cout << "A" << endl; };
- };
- class B : public A
- {
- public:
- void f( int a ){ cout << "B" << endl; };
- };
- int main( int argc, char *argv[] )
- {
- A *a = new A;
- B *b = new B;
- b->f(2);
- a->f(2);
- b =(B*)a;
- b->f(2);
- return 0;
- }
复制代码 输出为B A B- class A
- {
- public:
- virtual void f( int a ){ cout << "A" << endl; };
- };
- class B : public A
- {
- public:
- void f( int a ){ cout << "B" << endl; };
- };
- int main( int argc, char *argv[] )
- {
- A *a = new A;
- B *b = new B;
- b->f(2);
- a->f(2);
- b =(B*)a;
- b->f(2);
- return 0;
- }
复制代码 输出为B A A
最后b = (B*)a,这句不知到咋理解?虚函数不管基类还是继承类,传入的是谁的对象,就调用谁的对应的虚函数?有点混,麻烦大家给指点一下 |
|