手机扫码关注微信
随时随地刷题
试卷介绍
试卷预览
- 31虚函数支持多态调用,一个基类的指针可以指向派生类的对象,而且通过这样的指针调用虚函数时,,被调用的是指针所指的实际对象的虚函数,而非虚函数不支持多态调用。有如下程序:#include<iostream>using namespace std;class Base{public:virtual void f(){cout<<”f0+”;}void g() {cout<<”g0+”;}};class Derived:public Base{public:void f() {cout<<”f+”;}void g() {cout<<”g+”;}};int main(){Derived d;Base*p=&d;p->f(); p->g();return 0:}运行时输出的结果是
A.f+g+
B.f0+g+
C.f+g0+
D.f0+g0+
开始考试练习点击查看答案 - 32下面程序中对一维坐标点类Point进行运算符重载#include<iostream>using namespace std;class point {public:point (int vaI) {x=val;}point& operator++(){x++;retum*this;}print operator++(int) {point old=*this,++(*this);retum old;}int GetX() const {retum x;}private:int x;};int main(){point a(10);cout<<(++a).GetX();cout<<a++.GetX();retum();}编译和运行情况是
A.运行时输出1011
B.运行时输出1111
C.运行时输出1112
D.编译有错
开始考试练习点击查看答案 - 33有如下程序:#include<iostream>using namespace std;int main(){char str[100],*p;cout<<”please input a string:”;cin>>str;p=str;for(int i =0;*p!=” ”;p++, i ++);cout<< i <<endl;retum 0;}运行这个程序时,若输入字符串为abcdefg abcd则输出结果是
A.7
B.12
C.13
D.100
开始考试练习点击查看答案 - 34有如下程序::#include<iostream>using namespace std:class Sample{friend long fun (Sample s);public:Sample (long a ){x=a;}Private:long x;};long fun (Sample s){if(s.x<2)retum 1;retum s.x*fun(Sample(s.x-a));}int main(){int sum=0for(int i =0; i <6; i ++) { sum+=fun(Sample( i );) }cout<<sum;retum 0;}运行时输出的结果是
A.120
B.16
C.154
D.34
开始考试练习点击查看答案
最新试卷
高中教育高考语文(重庆卷)2013年普通高等学校招生全国统一考试
类别:学历类其它高中教育高考语文高考语文第一轮复习测试题9
类别:学历类其它高中教育高考语文高考语文第一轮复习测试题8
类别:学历类其它高中教育高考语文高考语文第一轮复习测试题6
类别:学历类其它高中教育高考语文高考语文第一轮复习测试题4
类别:学历类其它高中教育高考语文高考语文第一轮复习测试题3
类别:学历类其它高中教育高考语文高考语文第一轮复习测试题2
类别:学历类其它高中教育高考语文高考语文第一轮复习测试题1
类别:学历类其它高中教育高考语文高中语文课课练(5)
类别:学历类其它高中教育高考语文高中语文总复习 经典易错题会诊与命题角度
类别:学历类其它