为什么我的C ++代码中出现“未声明的标识符”错误?

时间:2019-11-28 19:47:24

标签: c++ class undeclared-identifier

因此,我们被分配在学校创建上课时间。他们希望我们用一个time.h头文件,一个time.cpp cpp文件和一个main.cpp cpp文件来分隔类。我有以下代码,但是由于某种原因,我一直收到“未声明的标识符”错误。现在,所有3个文件都包含在我的项目中。

代码如下:

time.h

class time
{
private:
    int hours;
    int minutes;
    int seconds;
public:
    time();
    time(int sec);
    time(int h, int min, int sec);
    int getTime();
    void setHours(int h);
    void setMinutes(int min);
    void setSeconds(int sec);
    bool equals(time t);
    void addTime(time t);
    void printTime();
    void normalize();

};

time.cpp

#include "time.h"
#include <iostream>
#include <iomanip>

using namespace std;

time::time()
{}
time::time(int sec)
{}
time::time(int h, int min, int sec)
{}
int time::getTime()
{
    return (hours * 60 * 60) + (minutes * 60) + seconds;
}
void time::setHours(int h)
{
    hours = h;
}
void time::setMinutes(int min)
{
    minutes = min;
}
void time::setSeconds(int sec)
{
    seconds = sec;
}
bool time::equals(time t)
{
    if (hours == t.hours && minutes == t.minutes && seconds == t.seconds)
        return true;
    else return false;
}
void time::addTime(time t)
{
    hours += t.hours;
    minutes += t.minutes;
    seconds += t.seconds;
}
void time::printTime()
{
    cout << setfill('0') << setw(2) << hours
        << ":" << setfill('0') << setw(2) << minutes
        << ":" << setfill('0') << setw(2) << seconds;
}
void time::normalize()
{
    seconds %= 60;
    minutes = minutes + (seconds / 60);
    hours = hours + (minutes / 60);
    minutes = minutes % 60;
}

main.cpp

#include "time.h"
#include <iostream>
#include <iomanip>

using namespace std;

int main()
{
    time time1;
    int seconds1;
    cout << "Enter the amount of seconds: ";
    cin >> seconds1;
    time time2(seconds1);
    int hours2, minutes2, seconds2;
    cout << "Enter the amount of hours: ";
    cin >> hours2;
    cout << "Enter the amount of muinutes: ";
    cin >> minutes2;
    cout << "Enter the amount of seconds: ";
    cin >> seconds2;
    time time3(hours2, minutes2, seconds2);
    time1.equals(time2);

}

1 个答案:

答案 0 :(得分:1)

编译给定的代码时,我收到大量错误消息,最能说明问题的是

switches[0] ^= start_value
values = np.bitwise_xor.accumulate(switches)
# restore switches to original state
switches[0] ^= start_value

这导致warning: statement is a reference, not call, to function 'time' time time1; ^ 被报告为以后没有声明,因为它没有声明。

标准库包含标头time.h和函数time1,为确保程序包含正确的time.h并使用正确的time.,我将标头重命名为mytime.h, time归类为time。消除歧义的可能性后,所有错误都消失了(有关未使用参数的一些警告仍然存在)。

我建议使用比mytime更平淡的东西,但是只要名称具有描述性,并且不再有冲突,请随意使用您想要的任何东西。