首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
下列代码段中声明了3个类: class Person{}; class Student:public Person{}; class Undergraduate:Student{}; 下列关于这些类之间关系的描述中,错误的是( )。
下列代码段中声明了3个类: class Person{}; class Student:public Person{}; class Undergraduate:Student{}; 下列关于这些类之间关系的描述中,错误的是( )。
admin
2019-05-06
20
问题
下列代码段中声明了3个类:
class Person{};
class Student:public Person{};
class Undergraduate:Student{};
下列关于这些类之间关系的描述中,错误的是( )。
选项
A、类Person是类Undergraduate的基类
B、类Undergraduate从类Student公有继承
C、类Student是类Person的派生类
D、类Undergraduate是类Person的派生类
答案
B
解析
本题考查基类和派生类的逻辑关系,属于基础知识,如果没有指明哪种继承方式,那么默认为私有继承,所以B选项错误。
转载请注明原文地址:https://kaotiyun.com/show/os8p777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有如下程序:#include<iostream>usingnamespacestd;classTestClass{intk;public:TestClass(intx=1):k(x)
假定q所指对象的值为25,q+1所指对象的值为46,则执行"(*q)++;"语句后,q所指对象的值为______。
有如下程序:#include<iostream>usingnamespacestd;classToy{public:Toy(char*_n){strcpy(name,_n);count++;}~Toy(
下列关于C++流的叙述中,错误的是
如下程序的输出结果是#include<iostream>usingnamespacestd;classMyClass{public:MyClass(inti=0){cout<<1;}MyClass(c
执行如下程序,输出星号(*)的个数为#include<iostream>usingnamespaeestd;classSample{public:Sample(){}~Sample(){cout<
如下程序的输出结果是______。#include<iostream>usingnamespacestd;intfunl(intx){return++x;}intfun2(int&x){return++x;
补充完整下面的类定义:classXCH{char*a;public:XCH(char*aA){//构造函数a=newchar[strlen(aA)+1];strcpy(a,aA);
A、 B、 C、 D、 BPoint&operator++(){x++;return*this;}是在成员函数运算符重载单目运算符(前缀方式),Pointoperator++(int){Poin
A、 B、 C、 D、 B只有在创建对象时才会调用类的构造函数,在定义指针时不会调用构造函数,本程序共生成了3个同类对象a,b[2]。
随机试题
A、TheywereproducedontheassemblylineB、TheywerebuiltwithlesscostlymaterialsC、TheyweremodeledafterBritishcars.D
在以系统为中心的理论中,以下哪个不是其代表人物()
腹主动脉不成对和成对的脏支各有哪些?
正常胎儿血循环中哪一部位血氧含量最高
甲公司对乙公司负有交付葡萄酒的合同义务。丙公司和乙公司约定,由丙公司代甲公司履行,甲公司对此全不知情。下列哪一表述是正确的?()(12年司考.卷三.单12)
下列关于城镇土地使用税的说法,正确的是()。
经济利润等于销售收入减去()
OnetheorypostulatesthattheancientFilipinoscamefromIndiaandPersia.
Wemakeitclearthatwewantthoseresponsible______.
Forthispart,youareallowed30minutestowriteanapologylettertoacustomer.Youshouldwriteatleast150wordsbutnom
最新回复
(
0
)