编程题 定义类Time,有三个私有数据成员,hour,minute,second,有两个成员se
编程题定义类Time,有三个私有数据成员,hour,minute,second,有两个成员settime()设置时间,showtime()显示时间,声明对象并实现设置时间...
编程题 定义类Time,有三个私有数据成员,hour,minute,second,有两个成员settime()设置时间,showtime()显示时间,声明对象并实现设置时间和显示时间。
展开
展开全部
//编程题 定义类Time,有三个私有数据成员,
//hour,minute,second,有两个成员settime()设置时间,showtime()显示时间,
//声明对象并实现设置时间和显示时间。
#ifndef _TIME_H
#define _TIME_H
////////////////////////////////////////////
//define time struct
struct Abtime
{
int m_hour;
int m_minute;
int m_second;
};
////////////////////////////////////////////
//define class time
class Time
{
public:
Time(struct Abtime&);//constructor function
~Time();
void showtime(int hour,int minute,int second);//set time
struct Abtime settime(struct Abtime&);//show time
private:
struct Abtime mytime;
};
#endif
//hour,minute,second,有两个成员settime()设置时间,showtime()显示时间,
//声明对象并实现设置时间和显示时间。
#ifndef _TIME_H
#define _TIME_H
////////////////////////////////////////////
//define time struct
struct Abtime
{
int m_hour;
int m_minute;
int m_second;
};
////////////////////////////////////////////
//define class time
class Time
{
public:
Time(struct Abtime&);//constructor function
~Time();
void showtime(int hour,int minute,int second);//set time
struct Abtime settime(struct Abtime&);//show time
private:
struct Abtime mytime;
};
#endif
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询