27

我想要做的是将纪元时间(自 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;
}

您可以假设成员secondsminuteshoursmonthdayyear都存在。

使用for循环来修改原始时间感觉有点不对劲,我想知道是否有“更好”的解决方案。

4

7 回答 7

20

在您的 daysInMonth 函数中注意闰年。

如果您想要非常高的性能,您可以预先计算该对以一步获得月+年,然后计算日/小时/分钟/秒。

一个好的解决方案是gmtime 源代码中的一个:

/*
 * gmtime - convert the calendar time into broken down time
 */
/* $Header: gmtime.c,v 1.4 91/04/22 13:20:27 ceriel Exp $ */

#include        <time.h>
#include        <limits.h>
#include        "loc_time.h"

struct tm *
gmtime(register const time_t *timer)
{
        static struct tm br_time;
        register struct tm *timep = &br_time;
        time_t time = *timer;
        register unsigned long dayclock, dayno;
        int year = EPOCH_YR;

        dayclock = (unsigned long)time % SECS_DAY;
        dayno = (unsigned long)time / SECS_DAY;

        timep->tm_sec = dayclock % 60;
        timep->tm_min = (dayclock % 3600) / 60;
        timep->tm_hour = dayclock / 3600;
        timep->tm_wday = (dayno + 4) % 7;       /* day 0 was a thursday */
        while (dayno >= YEARSIZE(year)) {
                dayno -= YEARSIZE(year);
                year++;
        }
        timep->tm_year = year - YEAR0;
        timep->tm_yday = dayno;
        timep->tm_mon = 0;
        while (dayno >= _ytab[LEAPYEAR(year)][timep->tm_mon]) {
                dayno -= _ytab[LEAPYEAR(year)][timep->tm_mon];
                timep->tm_mon++;
        }
        timep->tm_mday = dayno + 1;
        timep->tm_isdst = 0;

        return timep;
}
于 2009-11-07T06:26:38.597 回答
17

标准库提供了执行此操作的函数。gmtime()localtime()将 a time_t(自纪元以来的秒数,即- Jan 1 1970 00:00:00) 转换为 a struct tmstrftime()然后可用于根据您指定的格式将 astruct tm转换为字符串 ( )。char*

见:http ://www.cplusplus.com/reference/clibrary/ctime/

日期/时间计算可能会变得棘手。除非你有充分的理由,否则你最好使用现有的解决方案,而不是尝试推出自己的解决方案。

于 2009-11-07T06:29:09.307 回答
5

一种简单的方法(尽管与您想要的格式不同):

std::time_t result = std::time(nullptr);
std::cout << std::asctime(std::localtime(&result));

输出:2011 年 9 月 21 日星期三 10:27:52

请注意,返回的结果将自动与“\n”连接。您可以使用以下方法将其删除:

std::string::size_type i = res.find("\n");
if (i != std::string::npos)
    res.erase(i, res.length());

取自:http ://en.cppreference.com/w/cpp/chrono/c/time

于 2016-02-04T11:20:57.993 回答
3
time_t t = unixTime;
cout << ctime(&t) << endl;
于 2018-07-24T03:47:35.543 回答
1

此代码可能会对您有所帮助。

#include <iostream>
#include <ctime>

using namespace std;

int main() {
   // current date/time based on current system
   time_t now = time(0);
   
   // convert now to string form
   char* dt = ctime(&now);

   cout << "The local date and time is: " << dt << endl;

   // convert now to tm struct for UTC
   tm *gmtm = gmtime(&now);
   dt = asctime(gmtm);
   cout << "The UTC date and time is:"<< dt << endl;
}
于 2020-06-22T11:19:17.707 回答
1

将纪元字符串转换为 UTC

string epoch_to_utc(string epoch) {
  long temp = stol(epoch);
  const time_t old = (time_t)temp;
  struct tm *oldt = gmtime(&old);
  return asctime(oldt);
}

然后它可以称为

  string temp = "245446047";
  cout << epoch_to_utc(temp);

输出:

Tue Oct 11 19:27:27 1977
于 2021-01-28T18:36:18.910 回答
0

如果您的原始时间类型是 time_t,您必须使用 time.h 中的函数,即 gmtime 等来获取可移植代码。C/C++ 标准没有指定 time_t 的内部格式(甚至是确切的类型),因此您不能直接转换或操作 time_t 值。

所知道的是 time_t 是“算术类型”,但没有指定算术运算的结果——你甚至不能可靠地加/减。在实践中,许多系统对 time_t 使用整数类型,内部格式为自纪元以来的秒数,但这不是由标准强制执行的。

简而言之,使用 gmtime(以及一般的 time.h 功能)。

于 2009-11-07T11:52:33.857 回答