问答题
请使用VC6或使用[答题]菜单打开考生文件夹proj1下的工程proj1,该工程中包含程序文件main.cpp,其中有类Clock(“时钟”)的定义和主函数main的定义。程序中位于每个“//ERROR****found****”之后的一行语句有错误,请加以改正。改正后程序的输出结果应为:
Initial times are
0 d:0 h:0 m:59 s
After one second times are
0 d:0 h:1 m:0 s
注意:只修改每个“//ERROR****found****”下的那一行,不要改动程序中的其他内容。
#include <iostream>
using namespace std;
class Clock
{
public:
Clock (unsigned long i = 0);
void set (unsigned long i = 0);
void print () const;
void tick(); //时间前进一秒
Clock operator ++ ();
private:
unsigned long total_sec, seconds,minutes, hours, days ;
};
Clock::Clock (unsigned long i)
: total_sec(i), seconds(i % 60),
minutes((i / 60) % 60),
hours((i / 3600) % 24),
days(i / 86400) {}
void Clock: :set (unsigned long i)
{
total sec = i;
seconds = i % 60;
minutes = (i / 60) % 60;
hours = (i /3600)% 60;
days = i / 86400;
}
// ERROR **********found**********
void Clock::print ()
{
cout <<days << "d:" <<hours <<"h:"
<<minutes <<"m:" <<seconds<<"s" <<endl;
}
void Clock::tick()
{
// ERROR **********found**********
set (total_sec++);
}
Clock Clock::operator ++ ()
{
tick ();
// ERROR **********found**********
return this;
}
int main ()
{
Clock ck(59);
cout <<"Initial times are" <<endl;
ck.print();
++ck;
cout <<"After one second times are" <<endl;
ck.print();
return 0;
}
【正确答案】(1)void Clock::print()const
(2)set(++total_sec);
(3)return*this;
【答案解析】[考点] 本题考查Clock类,其中涉及构造函数、成员函数、const函数和运算符重载。“时钟”类考查关于时间的基本常识,进位时要注意:印秒进1分钟,60分钟进1小时,24小时进1天。
[解析] (1)主要考查考生对成员函数的掌握,由Clock类中对函数print的声明void print()const;可知,在定义print函数时少了const。
(2)主要考查考生对++操作的掌握,根据函数要求,时间要先前进一秒,再调用函数set,因此total_sec++应改为++total_sec。
(3)主要考查考生对this指针的掌握,函数要求返回值Clock,即返回一个类,而不是指针,因此使用*this。
掌握++操作符,当自增、自减运算的结果要被用来继续参与其他操作时,前置与后置的情况是不同的,例如i的值为1,cont<<i++;//首先输出值1,然后i自增变为2;cout<<++i://首先i自增为2,然后输出值2。