【单选题】
对类中声明的变量,下列描述中正确的是( )
【单选题】
若Sample类中的一个成员函数说明如下:void set(Sample& a),则Sample& a的含义是()
②
a是类Sample的对象引用,用来作函数Set()的形参
④
变量Sample与a按位与的结果作为函数Set的参数
【单选题】
下列的各类函数中,( )不是类的成员函数
【单选题】
如果没有为一个类定义任何构造函数的情况下,下列描述正确的是( )
【单选题】
已知:print( )函数是一个类的常成员函数,它无返回值,下列表示中,( )是正确的。
【单选题】
如果表达式++i*k中的“++”和“*”都是重载的友元运算符,若采用运算符函数调用格式,则表达式还可以表示为( )。
①
operator*(i.operator++(),k)
②
operator*(operator++(i),k)
③
i.operator++().operator*(k)
④
k.operator*(operator++(i))
【单选题】
设类A将其它类对象作为成员,则建立A类对象时,下列描述正确的是( )
【单选题】
面向对象程序设计思想的主要特征中不包括( )。
【单选题】
下列语句中,将函数int sum(int x, int y)正确重载的是( )。
①
float sum(int x, int y);
③
float sum(float x, float y);
④
double sum(int y, int x);