为什么C++中的.h和.cpp无法关联上?
//time1.h如下#ifdefTIME1_H#defineTIME1_HclassTime{public:Time();voidsetTime(int,int,int...
//time1.h如下
#ifdef TIME1_H
#define TIME1_H
class Time
{
public:
Time();
void setTime(int,int,int);
void printUniversal();
void printStandartd();
private:
int hour;
int minute;
int second;
};
#endif
//time1.cpp如下
#include <iostream>
using namespace std;
#include <iomanip>
using std::setfill;
using std::setw;
#include "time1.h"
Time::Time()
{
hour = second = minute = 0;
}
void Time::setTime(int h ,int m ,int s )
{
hour = ( h >= 0 && h < 24 ) ? h : 0;
minute = (m >= 0 && < 60 ) ? m : 0;
second = ( s >= 0 && < 60 ) ? s : 0;
}
void Time::printStandartd()
{
cout << setfill( '0') << setw(2) << hour << ":"
<< setw(2) << minute << ":"
<< setw(2) << second;
}
//main函数如下
#include <iostream>
using namespace std;
#include "time1.h"
int main()
{
Time t;
t.setTime(22,22,14);
t.printUniversal();
return 0;
}
编译的时候报错:
error C2653: 'Time' : is not a class or namespace name
意思大概是说Time类没有定义,为什么?已经定义了,而且已经关联了啊 展开
#ifdef TIME1_H
#define TIME1_H
class Time
{
public:
Time();
void setTime(int,int,int);
void printUniversal();
void printStandartd();
private:
int hour;
int minute;
int second;
};
#endif
//time1.cpp如下
#include <iostream>
using namespace std;
#include <iomanip>
using std::setfill;
using std::setw;
#include "time1.h"
Time::Time()
{
hour = second = minute = 0;
}
void Time::setTime(int h ,int m ,int s )
{
hour = ( h >= 0 && h < 24 ) ? h : 0;
minute = (m >= 0 && < 60 ) ? m : 0;
second = ( s >= 0 && < 60 ) ? s : 0;
}
void Time::printStandartd()
{
cout << setfill( '0') << setw(2) << hour << ":"
<< setw(2) << minute << ":"
<< setw(2) << second;
}
//main函数如下
#include <iostream>
using namespace std;
#include "time1.h"
int main()
{
Time t;
t.setTime(22,22,14);
t.printUniversal();
return 0;
}
编译的时候报错:
error C2653: 'Time' : is not a class or namespace name
意思大概是说Time类没有定义,为什么?已经定义了,而且已经关联了啊 展开
3个回答
大雅新科技有限公司
2024-11-19 广告
2024-11-19 广告
这方面更多更全面的信息其实可以找下大雅新。深圳市大雅新科技有限公司从事KVM延长器,DVI延长器,USB延长器,键盘鼠标延长器,双绞线视频传输器,VGA视频双绞线传输器,VGA延长器,VGA视频延长器,DVI KVM 切换器等,优质供应商,...
点击进入详情页
本回答由大雅新科技有限公司提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询