有如下程序: #include using namespace std; class GA{ public; virtual int f0{retum l;} ); class GB:public G

admin2019-02-22  22

问题 有如下程序:
    #include
    using namespace std;
    class GA{
    public;
    virtual int f0{retum l;}
    );
    class GB:public GA{
    public;
    virtual int f0{retum 2;}
    };
    void show(GA g){cout<    void display(GA&g){cout<    int main(){
    GA a:show(a);display(a);
    GB b:show(b);display(b);
    retum O:
    )
    运行时的输出结果是(    )。

选项 A、11 11
B、121 1
C、11 12
D、12 12

答案C

解析 此题考查派生类与虚函数的考查。由主函数main入手,其中分别定义了类GA和GB的对象a和b。首先,执行参数a的show函数调用,其中的输出语句为调用GA类中的f()虚函数,返回1。同理display(a)函数输出1。show(b)函数中调用的为GA中的f()函数,display(b)调用GA中f()函数,返回1,display(b)调用GB中的f()函数返回2。所以最后输出为1112。
转载请注明原文地址:https://kaotiyun.com/show/GcAp777K
0

最新回复(0)