定义一个时间(时,分,秒)结构体,重载减法等运算符,求两个时间之差的运算 15
定义一个时间(时,分,秒)结构体,重载减法等运算符,求两个时间之差的运算structTIME{unsignedshortinthour;unsignedshortintm...
定义一个时间(时,分,秒)结构体,重载减法等运算符,求两个时间之差的运算
struct TIME
{
unsigned short int hour;
unsigned short int minute;
unsigned short int second;
}
TIME operaor - (TIME t1,TIME t2); 展开
struct TIME
{
unsigned short int hour;
unsigned short int minute;
unsigned short int second;
}
TIME operaor - (TIME t1,TIME t2); 展开
2个回答
展开全部
TIME tRes;
int secsDlt = t1.hour * 3600 + t1.minute*60 + t1.second - t2.hour * 3600 - t2.minute*60 - t2.second;
tRes.hour = secsDlt/3600;
tRes.second=secsDlt%60;
tRes.minute=(secsDlt - tRes.hour * 3600 - tRes.second)/60;
return tRes;
没有测试过,试试吧
int secsDlt = t1.hour * 3600 + t1.minute*60 + t1.second - t2.hour * 3600 - t2.minute*60 - t2.second;
tRes.hour = secsDlt/3600;
tRes.second=secsDlt%60;
tRes.minute=(secsDlt - tRes.hour * 3600 - tRes.second)/60;
return tRes;
没有测试过,试试吧
追问
能把完整程序写一下么
追答
这个就是你问的重载函数的具体定义了,呼呼…
自己搞定吧。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
重载是什么意思
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询