有如下程序: #include using namespace std; class VAC{ public: int f()const{return 3;} int f(){return 5;} }; int main() { VAC v1;

admin2019-08-23  15

问题 有如下程序:
#include
using namespace std;   
class VAC{
public:
int f()const{return 3;}
int f(){return 5;}
};
int main()
{
VAC v1;
const VAC v2;
cout<return 0;
}
执行这个程序的输出结果是(    )。

选项 A、53
B、35
C、55
D、33

答案A

解析 本题考查常对象及常成员函数及构造函数,常对象只能调用常成员函数,所以本题中,对象v1为普通对象,执行v1.f()后,会执行默认构造函数,输出5,对象v2为常对象,执行v2.f()后,会执行常构造函数,输出3。
转载请注明原文地址:https://kaotiyun.com/show/RJ8p777K
0

最新回复(0)