首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下类说明: class TestClass{ int x: public: TestClass(int n){x=n;} }; class TestClass1:public TestClass{ int y; public: TestClass1(i
有如下类说明: class TestClass{ int x: public: TestClass(int n){x=n;} }; class TestClass1:public TestClass{ int y; public: TestClass1(i
admin
2019-04-01
29
问题
有如下类说明:
class TestClass{
int x:
public:
TestClass(int n){x=n;}
};
class TestClass1:public TestClass{
int y;
public:
TestClass1(int a,int b);
};
在构造函数TestClass1的下列定义中,正确的是( )。
选项
A、TestClass1::TestClass1(int a,int b):x(a),y(b){}
B、TestClass1::TestClass1(int a,int b):TestClass(a),y(b){}
C、TestClass1::TestClass1(int a,intb):x(a),TestClass1(b){}
D、TestClass1::TestClass1(int a,int b1:TestClass(a),TestClass1(b){}
答案
B
解析
题目中程序TestClass为基类,TestClass1为派生类,派生类构造函数的一般形式为:派生类构造函数名(总参数类表):基类构造函数名(参数列表){派生类中新增数据成员初始化语句}。派生类TestClass1的基类函数名为TestClass,总参数为int a,int b,所以选择B)。
转载请注明原文地址:https://kaotiyun.com/show/ylAp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
下列程序的输出结果为:Ohjectid=0Objectid=1请将程序补充完整。#include<iostream>usingnamespaeestd;classPoint{
有如下类定义:classTest{public:Test(){a=0;C=0;t//①intf(intA)const{this->a=a;}//②staticintg(){retur
将x+y*z中的“+”用成员函数重载,“*”是友元函数重载应写为()。
在面向对象方法中,类之间共享属性和操作的机制称为______。
设有charstr[80];以下不能将输入数据first\nsecond\n<CR>读取到数组str中的语句是
根据三角形的基本定理完成填空,则表达式应为______。#include<iostream.h>#include<math.h>voidmain(){doublea,b,e,s,area;
有以下类定义:classA{char*a;public:A():a(0){}A(char*aA){//把aa所指字符串复制到a所指的存储空间a=______;strcpy(a
字面常量42、4.2、42L的数据类型分别是
已知一棵二叉树的先根序列为ABCDEFK,中根序列为DGBAFCK,则结点的后根序列为()
随机试题
下图为某小型单位网络拓扑图,图中A、B、C对应的网络设备分别是()
患者,男,40岁。结喉两侧各有1个3cm×2cm×1cm,表面光滑,质地韧,无压痛,随吞咽上下活动的肿物。为明确诊断,应首选的检查方法是
下列关于行政为特征的说法,错误的是()。
绩效管理可以使组织根据考核结果制定正确的培训计划,达到提高全体员工素质的目标,这体现了绩效管理的()。
我国的社会主义改革是一场新的革命,其性质是()。
在教育实践中我们对待五育,要坚持“五育”并举,使五育均衡发展。
AHeroicWomanThewholeoftheUnitedStatescheereditslatesthero,AshleySmith,withtheFederalBureauofinvestigatio
ReadthispartofafaxfromSallySaunders,ahotelconferencemanager.TO:FaxNo:FroM:SallySaundersDate:1March2009
Readcarefullythefollowingexcerpt,andthenwriteyourresponseinNOLESSTHAN200words,inwhichyoushould:-summariz
Tight-lippedeldersusedtosay,"It’snotwhatyouwantinthisworld,butwhatyouget."Youcanmakeamentalblueprinto
最新回复
(
0
)