首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
下列程序的运行结果为______。 #include<iostream.h> class myclass { private: int a,b,c; public: void fun( )
下列程序的运行结果为______。 #include<iostream.h> class myclass { private: int a,b,c; public: void fun( )
admin
2010-12-16
31
问题
下列程序的运行结果为______。
#include<iostream.h>
class myclass
{
private:
int a,b,c;
public:
void fun( )
{
int a;
a=10;
this->a=5;
b=6;
this->c=7;
cout<<"a="<<a<<", this->a="<<this->a<<endl;
}
};
void main( )
{
myclass objl;
obj1.fun( );
}
选项
答案
a=10,this->a=5
解析
本题考察在类的成员函数定义中,如果出现类的数据成员和成员函数的局部变量同名的情况下,如何正确引用合适的变量或数据成员。本题巧妙的采用了this指针完成这种标识。
转载请注明原文地址:https://kaotiyun.com/show/JFVp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有以下程序:#include#defineM6#defineg(x)(x*M)main(){intm,n,k=1;m=g(k+1);n=g(2);printf(’’%d,%d\n’’,m,n);}程序运行后的输出
有以下程序#include<stdio.h>#include<string.h>structA{inta;charb[10];doublec;};structAf(structAt);
有以下程序#include<stdio.h>#include<string.h>main(){chara[]="TEXT",*b="++",c[3]="1";printf("%d,%d,",str
软件按功能可以分为应用软件、系统软件和支撑软件(或工具软件)。下面属于系统软件的是
有以下程序#include<stdio.h>main(){charch=’D’;while(ch>’A’){ch--;putchar(ch);if(ch==’A’)
若要建立下图所示的存储结构,以下正确的程序段是()。
以下是while语句的基本形式:while(表达式){语句;}其中“表达式”()。
下面程序的输出结果是()。#includemain(){chara[]={’a’,’b’,’c’,’d’,’f’,’g’},*p;p=a;printf(“%c\n”,*p+4);}
有以下定义和语句:structstudents{intnum;charname[20];charc:struct{intgrade1;intgrade2;}s;}:structstudentsw.*pw;*pw=w:下列赋值
随机试题
津液在体内流注输布的通道是
《本经逢原》谓“能透诸窍藏。辟一切不正之气”的药物是
枕先露的指示点是臀先露的指示点是
牙槽骨修整的最佳时间为拔牙后
测定界址及确定产权界线是保证地籍测量()的手段。
下列资产中,属于流动资产的项目有()。[2015年10月真题]
Itisoftenobservedthattheagedspendmuchtimethinkingandtalkingabouttheirpastlives,(1)_____aboutthefuture.These
Therehavebeenrumors.There’sbeengossip.AllHollywoodisshockedtolearnthatCalistaFlockhart,starofFox’shitTVshow
Listeningoutforwhalesongisonewaythatshipscanavoidcollidingwithwhales.Butwhatdoyoudoifthewhalesaren’tsing
A、Scholarscangetprivategrantswithoutapplication.B、Scholarsstarttowriteapaperwhendoingtheirresearch.C、Scholars’
最新回复
(
0
)