请使用VC6或使用【答题】菜单打开考生文件夹proj1下的工程proj1,该工程中包含程序文件main.cpp,其中有类Clock(“时钟”)的定义和主函数main的定义。程序中位于每个“//ERROR****found****”之后的一行语句有错误.请加

admin2020-07-23  26

问题 请使用VC6或使用【答题】菜单打开考生文件夹proj1下的工程proj1,该工程中包含程序文件main.cpp,其中有类Clock(“时钟”)的定义和主函数main的定义。程序中位于每个“//ERROR****found****”之后的一行语句有错误.请加以改正。改正后程序的输出结果应为:
    Initial times are
    0d:0h:0m:59s
    After one second times are
    0d:0h:1m:0s
    注意:只修改每个“//ERROR****found****”下的那一行,不要改动程序中的其他内容。
1  #include
2  using namespace std;
3
4  class Clock
5  {
6 public:
7    Clock(unsigned long i=0);
8    void set(unsigned long i=0);
9    void print()const;
10    void tick();  //时间前进一秒
11    Clock operator++();
12 private:
13    uns igned long total sec,seconds
    minutes,hours,days;
14    };
15  Clock::Clock(unsigned long i)
    :total_sec(i),seconds(i%60),
    minutes((i/60)%60),
    hours((i/3600)%24),
    days(i/86400){)
16  void Clock::set(unsigned long i)
17    {
18 total sec=i;
19    seconds=i%60;
20    minutes:(i/60)%60;
21 hours=(i/3600)%60;
22 days:i/86400;
23    }
24    //ERROR  **********found**********
25  void Clock::print()
26  {
27    cout  <28    <29    }
30  void Clock::tick()
31    {
32    //ERROR  **********found**********
33    set(total sec++);
34  }
35
36  Clock Clock::operator++()
37    {
38 tick();
39    //ERROR  **********found**********
40    return this;
41  }
42  int main()
43    {
44    Clock ck(59);
45    cout  <<  "Initial times  are" <46    ck.print();
47    ++ck;
48    cout  <<  "After one  second times are"<49    ck.print();
50    return 0;
51    }

选项

答案(1)void Clock::print()const (2)set(++total_sec); (3)return*this:

解析 (1)主要考查考生对成员函数的掌握,由Clock类中对函数print的声明void print()const;可知,在定义print函数时少了const。
    (2)主要考查考生对++操作的掌握,根据函数要求,时间要先前进一秒,再调用函数set,因此total_see++应改为++total_sec。
    (3)主要考查考生对this指针的掌握,函数要求返回值Clock,即返回一个类,而不是指针,因此使用*this。
转载请注明原文地址:https://kaotiyun.com/show/Vhyp777K
0

最新回复(0)