位置:首页 > 题库频道 > 其它分类 > 计算机其它 > 二级二级C++2004年9月全国计算机等级考试二级笔试试卷&公共基础知识及C++语言程序设计

有以下类定义class MyClass{private:int id;char gender,char *phone;public:MyClass():id(0),gender('#'),phone(NULL) { }MyClass(int no, char ge='#', char *ph= NULl.){ id=no;gende=ge;phone=ph; }};下列类对象定义语句中错误的是

发布时间:2024-07-09

A.MyClass myObj;

B.MyClass myObj(11, "13301111155");

C.MyClass myObj(12, 'm');

D.MyClass myObj(12);

试卷相关题目

  • 1有以下类定义class Point {public:Point(int x = 0, int y = 0) { _.x = x; _.y = y; }void Move(int xOff, int yOff){ _x += xOff; _.y += yOff; }void Print() const{ cout << '(' << _x << ',' << _y << ')' << endl; }private:int _x, _y;};下列语句中会发生编译错误的是

    A.Point pt; pt.Print();

    B.const Point pt; pt.Print();

    C.Point pt; pt.Move(l, 2);

    D.const Point pt; pt.Move(l, 2);

    开始考试点击查看答案
  • 2C++流中重载的运算符>>是一个(  )

    A.用于输出操作的非成员函数

    B.用于输入操作的非成员函数

    C.用于输出操作的成员函数

    D.用于输入操作的成员函数

    开始考试点击查看答案
  • 3执行语句序列ofstream outfile("DAT

    A.DAT");if(...) cout << "OK"; else cout << "FAIL";后,如果文件打开成功显示“OK”,否则就显示“F厶n。”。由此可知,上面if语句的...处的表达式应是A.outfile.fail() 或 outfile

    B.outfile.good() 或 !outfile

    C.outfile.good() 或 outfile

    D.outfil

    E.fail() 或 !outfile

    开始考试点击查看答案
  • 4下列是模板声明的开始部分,其中正确的是

    A.template

    B.template

    C.template

    D.template

    开始考试点击查看答案
  • 5在下面的运算符重载函数的原型中,错误的是

    A.Volume operator - (double, double);

    B.double Volume::operator- (double);

    C.Volume Volume: :operator - (Volume);

    D.Volume operator - (Volume, Volume);

    开始考试点击查看答案
  • 6有以下程序#include <iostream>using namespace std;class Complex{public:Complex(double r =0, double i =0):re(r), im(i) { }double real() const { return re; }double imag() const { return im;}Complex operator +(Complex c) const{ return Complex(re+c.re, im+c.im); }private:double re, im;};int main(){Complex a = Complex(l, 1) + Complex(5);cout <<

    A.real() << '+' << a.imag() <<'i' << endl;return 0;}程序执行后的输出结果是A.6+6i

    B.6+1i

    C.1+6i

    D.1+1i

    开始考试点击查看答案
返回顶部