二级二级C++2004年9月全国计算机等级考试二级笔试试卷&公共基础知识及C++语言程序设计
题目内容

有以下类定义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;};下列语句中会发生编译错误的是

2024-07-09

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);

题目答案

试卷相关题目

最新试卷
热门试卷

长理培训客户端 资讯,试题,视频一手掌握

去 App Store 免费下载 iOS 客户端