首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有以下程序: #include <iostream> #include <string> using nameSpace std; class person { int age;
有以下程序: #include <iostream> #include <string> using nameSpace std; class person { int age;
admin
2013-02-27
45
问题
有以下程序:
#include <iostream>
#include <string>
using nameSpace std;
class person
{
int age;
Char * name;
public:
person ( int i, Char * str )
{
int j;
j = strlen( str ) + 1;
name = new char[ j ];
strcpy( name, str );
age = i;
}
~person()
{
delete name;
cout<<"D";
}
void display()
{
cout<<name<<":"<<age;
}
};
int main()
{
person demo( 30,"Smith" );
demo.display();
return 0;
}
则该程序的输出结果为:【 】。
选项
答案
Smith:30 D
解析
本题考核类与对象的操作。主函数中定义类person的对象 demo,并赋初值(30,"smith")。然后调用成员函数display()输出赋值结果,即Smitch:30。程序结束时demo对象的析构函数被调用,再输出“D”。
转载请注明原文地址:https://jikaoti.com/ti/6oL0FFFM
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
C语言源程序名的后缀是()。
有以下程序 #include<stdio.h> main() {charch=’1’; while(ch<’9’) { printf("%d",ch-’0’); ch++; } } 程序运行后
以下不构成无限循环的语句或语句组是()。
有以下程序 #include<stdio.h> main() {FILE*fp; inti,a[6]={1,2,3,4,5,6},b[6]; fp=fopen("d.dat","w+b"); fwrite(a,siz
以下选项中错误的是()。
学校的数据库中有表示系和学生的关系:系(系编号,系名称,系主任,电话,地点),学生(学号,姓名,性别,入学日期,专业,系编号),则关系学生中的主键和外键分别是()。
给定程序中,函数fun的功能是:求SS所指字符串数组中长度最长的字符串所在的行下标,作为函数值返回,并把其串长放在形参n所指变量中。ss所指字符串数组中共有M个字符串,且串长<N。请在程序的下划线处填入正确的内容并把下划线删除,使程序得出正确的结果。注
在按层次遍历二叉树的算法中,需要借助的辅助数据结构是()。
软件危机出现于20世纪60年代末,为了解决软件危机,人们提出用【】的原理来设计软件,这就是软件工程诞生的基础。
测试的,目的是暴露错误,评价程序的可靠性;而【】的目的是发现错误的位置并改正错误。
随机试题
混凝土受压破坏主要发生在水泥石与骨料的界面上。()
甲公司某零件年需要量18000件,每次订货成本20元,单位存货年储存成本0.5元每件。按照经济订货量进货,则下列表述中错误的是()。
甲向乙借款5万元,丙为保证人,约定丙承担保证责任直至甲向乙还清本息为止。根据合同法律制度的规定,丙的保证责任期间是()。
用于传统印刷的排版文件不包括()。
根据以下资料,回答问题。据海关统计,2010年1至11月,我国进出口总值26772.8亿美元,比去年同期(下同)增长36.3%。其中出口14238.5亿美元,增长33%;进口12534.3亿美元,增长40.3%。在出口商品中,1至11月
*Employeeswithintheorganizationhaveopportunitiesforadditionalsalaryadvancement.Themediadirectorisresponsiblefor
Youcanhave______paiddirectfromyouraccount.
Aperson,likeacommodity,needspackaging.Butgoingtoofarisabsolutelyundesirable.Alittleexaggeration,however,doesn
Itwouldbeinterestingtodiscoverhowmanyyoungpeoplegotouniversitywithoutanyclearideaofwhattheyaregoingtodoa
A、Depositsomemoneyinahank.B、Readtheleasecarefullyandsignit.C、Askthelandlordforadamagedeposit.D、Signthecont
最新回复
(
0
)