二级二级C++2007年4月计算机等级考试C++考试
题目内容

如果不使用多态机制,那么通过基类的指针虽然可以指向派生类对象,但是只能访问从基类继承的成员,有如下程序,没有使用多态机制。#include<iostream>using namespace std;class Base{int a,b;public:Bace(int x ,int y) { a=x; b=y;}Void show(){ cout<<a<<’,’<<b<<endl;}}clsaa Derived:public Base {int c ,d;public:Derived(int x,int y,int z,int m):Base(x,y){c=z; d=m;}Void show(){ cout<<c<<’,’d<<endl;}};int main(){Base B1(50,50),*pb;Derived DI(10,20,30,40);Pb=&D1;Pb->show();Return 0;}运行时输出的结果是

2024-07-09

A.10,20

B.30,40

C.20,30

D.50,50

题目答案

试卷相关题目

最新试卷
热门试卷

长理培训客户端 资讯,试题,视频一手掌握

去 App Store 免费下载 iOS 客户端