我正在学习 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)'
我错过了什么?