在C ++中将秒转换为UNIX时间戳

时间:2012-01-05 19:32:45

标签: c++ date casting type-conversion unix-timestamp

这是我的代码,在传递时间戳后应显示两个完整日期:

#include <iostream>
#include <fstream>
#include <time.h>
#include <string>

using namespace std;

int main (int argc, char* argv[])
{

    time_t startTime_t = (time_t) argv[1];
    time_t endTime_t = (time_t) argv[2];

    cout << argv[1] << endl << argv[2] << endl;
    cout << startTime_t << endl << endTime_t << endl;

    string startTime = asctime(localtime(&startTime_t));
    string endTime = asctime(localtime(&endTime_t));

    cout << startTime << endl << endTime << endl;

    return 0;
}

我在从秒到time_t的转换方面做错了,正如您在此输出中所看到的那样:

$ ./a 1325783860 1325791065
1325783860
1325791065
1629762852
1629763900
Mon Aug 23 19:54:12 2021

Mon Aug 23 20:11:40 2021

供参考:

$ date -d @1325783860
Thu Jan  5 12:17:40 EST 2012

1 个答案:

答案 0 :(得分:3)

你不能只是将一个字符串指针强制转换为time_t。使用atol()从字符串中获取一个long,然后将其转换为time_t。

您获得的值是指针算术值,被解释为时间或基本上是随机的。