问题
填空题
在下面的程序的横线处填上适当的语句,使该程序的输出为12。
#include 〈iostream〉
using namespace std;
class Base
public:
int a;
Base(int i) a=i;
;
class Derived : public Base
int a;
public:
Derived(int x) : Base(x),b(x+1)
void show()
〈u〉 【14】 〈/u〉;//输出基类数据成员a的值
cout〈〈b〈〈end1;
;
int main()
Derived d(1);
d.show();
return 0;
答案
参考答案:cout〈〈Base::a
解析: 本题考核作用域分辨符“::”的使用。