整型
长整型
双精度型
单精度型
第1题:
A、整型
B、字节型
C、长整型
D、单精度型
第2题:
int型public成员变量MAX_LENGTH,该值保持为常数100,则定义这个变量的语句是 ( )。
A.public int MAX_LENGTH=100
B.fmal int MAX_LENGTH=100
C.pubic const int MAX_LENGTH=100
D.public final int MAX_LENGTH=100
第3题:
( 32 )有如下程序
#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 )书:精彩人生
第4题:
设int x:,则经过______ 后,语句*px=0;可将x值置为0。
A.int*px;
B.int const *px=&x;
C.int* const px=&x:
D.const int *px=&x;
第5题:
假定MyClas为一个类,则该类的拷贝构造函数的声明语句为( )。
A.MyClas&(MyClas x);
B.const MyClas&(MyClas x);
C.MyClas(const MyClas& x);
D.MyClas(MyClas& x);
第6题:
A、整型
B、字节型
C、长整型
D、单精度型
第7题:
此题为判断题(对,错)。
第8题:
VB中定义常量的语法正确的( )
A.常量名[AS类型]
B.常量名[AS类型]=表达式
C.Const常量名[AS类型]
D.Const常量名[AS类型]=表达式
第9题:
某类中有一个无参且无返回值的常成员函数Show,则正确的Show函数原型是
A.const void Show();
B.void const Show();
C.void Show()const;
D.void Show(const);
第10题:
有如下程序: #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.书:精彩人生