我想要做的是将纪元时间(自 1970 年 1 月 1 日午夜以来的秒数)转换为“实时”时间(m/d/yh:m:s)
到目前为止,我有以下算法,我觉得有点难看:
void DateTime::splitTicks(time_t time) {
seconds = time % 60;
time /= 60;
minutes = time % 60;
time /= 60;
hours = time % 24;
time /= 24;
year = DateTime::reduceDaysToYear(time);
month = DateTime::reduceDaysToMonths(time,year);
day = int(time);
}
int DateTime::reduceDaysToYear(time_t &days) {
int year;
for (year=1970;days>daysInYear(year);year++) {
days -= daysInYear(year);
}
return year;
}
int DateTime::reduceDaysToMonths(time_t &days,int year) {
int month;
for (month=0;days>daysInMonth(month,year);month++)
days -= daysInMonth(month,year);
return month;
}
您可以假设成员seconds
、minutes
、hours
、month
、day
和year
都存在。
使用for
循环来修改原始时间感觉有点不对劲,我想知道是否有“更好”的解决方案。