单选题Const Two#=2,则Two为()类型的常数。A整型B长整型C双精度型D单精度型
单选题
Const Two#=2,则Two为()类型的常数。
A
整型
B
长整型
C
双精度型
D
单精度型
参考解析
解析:
暂无解析
相关考题:
( 32 )有如下程序#includeiostreamusing namespace std;class Publication{ // 出版物类char name[30];public:Publication(char *name=" 未知名称 "){strcpy(this-name,name);}const char * getName()const{ return name; }virtual const char * getType()const{ return " 未知类型 ";}};class Book: public Publication{ // 书类public:Book(char *name): Publication(name){}virtual const char * getType()const{ return " 书 " ; }};void showPublication( Publication p){coutp.getType()":"p.getName()endl;}int main(){Book book(" 精彩人生 ");showPublication(book);return 0;}运行时的输出结果是A )未知类型:未知名称B )未知类型:精彩人生C )书:未知名称D )书:精彩人生
int型public成员变量MAX_LENGTH,该值保持为常数100,则定义这个变量的语句是 ( )。A.public int MAX_LENGTH=100B.fmal int MAX_LENGTH=100C.pubic const int MAX_LENGTH=100D.public final int MAX_LENGTH=100
假定MyClas为一个类,则该类的拷贝构造函数的声明语句为( )。A.MyClas(MyClas x);B.const MyClas(MyClas x);C.MyClas(const MyClas x);D.MyClas(MyClas x);
某类中有一个无参且无返回值的常成员函数Show,则正确的Show函数原型是A.const void Show();B.void const Show();C.void Show()const;D.void Show(const);
设int x:,则经过______ 后,语句*px=0;可将x值置为0。A.int*px;B.int const *px=x;C.int* const px=x:D.const int *px=x;
有如下程序:includeusing namespace std;class Publication{//出版物类char name[30] 有如下程序: #include<iostream> using namespace std; class Publication{//出版物类 char name[30]; public: Publication(char*name="未知名称"){strcpy(this->name,name);} const char*getName( )const{return name;} //常数据成员 virtual const char*getType( )const{return"未知类型";}//虚常数据成员 }; class Book:public Publication{ //书类 public: Book(char*name):Publication(name){ } virtual const char*getType( )const{return"书";} //虚常数据成员 }; void showPublication(Publication p){cout<<p.getType( )<<":"<<P.getName( )<<endl;} int main( ){ Book book("精彩人生"); showPublication(book); return 0; } 程序的输出结果是A.未知类型:未知名称B.未知类型:精彩人生C.书:未知名称D.书:精彩人生
下列属于定义VB常量的语句是()。A、Dim常量名[As数据类型]=表达式B、Function常量名As数据类型C、Const常量名[As数据类型]=表达式D、Const常量名[As数据类型]
下列关于const限定符的说法中,错误的是()。A、const限定符是左结合的,即它修饰在它左边的类型B、在说明const变量时,必须对该变量进行初始化C、与宏定义符号常量的区别是,const将产生一个具有类型的符号D、const变量是常量变量,所以一个const变量可以被多次赋予不同的常量
已知AgCl的溶度积常数为Ksp,[Ag(NH3)2]+的稳定常数为Ks,则反应AgCl(s)+2N3H = [Ag(NH3)2]++ Cl-的平衡常数K为()。A、KsKspB、1/KsKspC、Ks/KspD、Ksp/Ks
已知AgCl的溶度积常数为Ksp,[Ag(NH3)2]+的稳定常数为Ks,则反应AgCl(s)+2NH3=[Ag(NH3)2]++Cl-的平衡常数为()A、KsKspB、1/KsKspC、Ks/KspD、Ksp/Ks
int型public成员变量MAX_LENGTH,该值保持为常数100,则定义这个变量的语句是()A、public int MAX_LENGTH=100B、final int MAX_LENGTH=100C、public const int MAX_LENGTH=100D、public final int MAX_LENGTH=100
若有类W说明class W{int a;public:voidfConst(int)const;};,则函数fConst的正确定义是()A、void W::fConst(intk)const{k=a;}B、void W::fConst(intk)const{k=a++;}C、void W::fConst(intk)const{cina;}D、void W::fConst(intk)const{a=k;}
单选题已知类IMS中两个成员函数的声明为“void listen()const;”与“void speak();”,另有两个对象的定义为“IMS obj1;”与“const IMS obj2;”,则下列语句中,产生编译错误的是( )。Aobj1.listen( );Bobj1.speak( );Cobj2.listen( );Dobj2.speak( );
单选题Const One=1,则One为()类型的常数。A整型B字节型C长整型D单精度型