麻烦C++大神来分析一下两道题。。

#include<iostream.h>

class one

{

public:

virtual void f(){cout<<"1";} //虚拟函数

};

class two:public one

{

public: //没有重载f(),所以f()被继承。

two(){cout<<"2";}

};

class three:public two

{

public:

virtual void f(){two::f();cout<<"3"; } //重载了虚拟函数,two::f()被隐藏

};

int main()

{

one aa,*p; //注意p是基类的指针

two bb; //two:two()被调用,输出“2”

three cc; //three::three()被调用,同时会在调用基类的构造函数two:two(),输出“2”

p=&cc; //多态调用,实际成了指向子类的指针。

p->f(); //调用了three::f(), 而two::f()就是one::f(),输出“1”,再输出“3”

return 0;

}

#include<iostream>

using namespace std;

class A{

public:

virtual void funcl(){cout<<"A1";} //注意是 funcl

void func2(){cout<<"A2";}

};

class B: public A{

public:

void func1(){cout<<"B1";} //是 func1,所以还存在B:funcl()

void func2(){cout<<"B2";}

};

int main(){

A *p=new B; //p是实际指向B类的指针

p->funcl(); //没有被重载

p->func2();

return 0;

}

这个题目完全是坑爹的,没什么意义。