2

我正在学习 C++,我正在尝试使用 dev c++ 中不包含的头文件来完成练习。我已经尝试过导入头文件,并且 dev c++ 显示它被列为头文件。此外,我创建了一个项目并将 ccc_time.h 文件添加到项目中,然后根据这个常见问题进行编译。这是我所做的:

#include <iostream>

using namespace std;

#include "ccc_time.h"

int main()

{
    Time wake_up;

    wake_up (7, 7, 7);
    wake_up.add_seconds(1000);
    cout << wake_up.get_hours()
        << ":" << wake_up.get_minutes()
        << ":" << wake_up.get_seconds() << "\n";

    Time now;
    int seconds_left = Time(23, 59, 59).seconds_from(now);

    cout << "There are "
    << seconds_left
    << " seconds left in this day.\n";

    return 0;
}

我得到的错误是:

[Error] no match for call to '(Time) (int, int, int)'

我错过了什么?

4

1 回答 1

2

如果你正在调用构造函数Time(int, int, int),你应该这样做:

Time wake_up (7, 7, 7);

如果没有Time应该有operator(int, int, int)

编辑:您可以定义operator(int, int, int)如下:

void Time::operator(int a, int b, int c)
{
  // do something appropriate
}
于 2013-07-30T01:33:10.810 回答