首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #inc1ude<iostream> #inc1ude<cstring> using namespace std; c1ass MyString{ public: char str[80];
有如下程序: #inc1ude<iostream> #inc1ude<cstring> using namespace std; c1ass MyString{ public: char str[80];
admin
2017-06-18
21
问题
有如下程序:
#inc1ude<iostream>
#inc1ude<cstring>
using namespace std;
c1ass MyString{
public:
char str[80];
MyString(const char*s){ strcpy(str,s);)
MyString& operator+=(MyString a){
strcat(str,a.str),
return *this;
}
};
ostream& operator<<(ostream& s,const MyString& z){return s<<z.str;}
int main(){
MyString x("abc"),y("cde");
cout<<(x+=y)<<end1;
return 0;
}
运行这个程序的输出结果是( )。
选项
A、abc
B、cde
C、abcde
D、abccde
答案
D
解析
在类MyString中,定义了带参数的构造甬数MyString(const char*s),其作用是把s指向的字符串拷贝到字符组str中。在类中还对运算+=进行重载定义,其作用是把字符串str和a相连接并赋给str,所以在主函数中执行x+=y时,结果为abccde。
转载请注明原文地址:https://jikaoti.com/ti/Qgt0FFFM
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
下列程序用于将源文件中的字母进行大小写转换,while的条件是【 】。#include<iostream.h>#include<fstream.h>#include<iomanip.h>void
下列程序的执行结果为【 】。#include<iostream.h>classPoint{public:Point(doublei,doublej){x=i;
下列程序的输出结果是( )。 #include<iostream> using namespace std; class TestClass{ static int i; public: TestClass(){i++
派生类的构造函数的成员初始化列表中,不能包含( )。
有如下程序: #include<iostream> using namespace std; class VAC{ public: int f() const{return 3;} int f() {
带一个long类型参数的流成员函数_____按参数值设置flags状态变量,并返回以前设置的标志值。
有以下程序#include<iostream.hfloatfun(intx,inty){return(x+y);}voidmain(){inta=2,b=5,c=8;cout<<fun((int)f
要实现动态联编,必须通过()调用虚函数。
若类A和类B的定义如下:classA{inti,public:voidget();//...};classB:A//默认为私有派生{intk;public
函数模板:template<classT>Tadd(Tx,Ty){returnx+y;}下列对add函数的调用不正确的是()。
随机试题
简述因自身利益导致注册会计师对职业道德基本原则产生不利影响的情形。
下列哪项不是常用的不良反应监测方法
患儿男,3个月。因“发热、气促3天、加重1天”入院。3天前无明显诱因下,发热39.6℃,伴轻咳,气促,唇周发绀,无寒战,无抽搐。曾在外院予青霉素,头孢噻肟钠抗感染等治疗。昨天热稍退,但气促发绀明显加重,伴呼气性呻吟。起病以来,精神困倦,烦躁,睡眠差,胃纳差
女,20岁。咳嗽、胸闷1周。查体:右下肺呼吸音消失。胸部X线片示右侧大量胸腔积液。该患者肺通气功能检查最不可能出现的结果是
下列诗句按其所描写节日的先后顺序.排列正确的是:①桃符呵笔写,椒酒过花斜②九日黄花酒,登高会昔闻③粽包分两髻,艾束著危冠④马上逢寒食.途中属暮春
市场利率上升时,债券交易价格会随之降低。()(中国人民大学2012真题)
Whomdoesthemanwanttotalkwith?
Readtheemailandmemobelow.Completetheform.Writeawordorphrase(inCAPITALLETTERS)oranumberonlines41-45o
Thenumberofstudentsinourdepartment(be)______morethan500.
Duringtheholidays,theconcertenjoyshuge(popular)______despitethehighticketprice.
最新回复
(
0
)