C++时间戳(毫秒)转为日期格式(年月日时分秒)

内容转载自 https://www.douban.com/note/194707333/

VS2013

#include <iostream>
#include <time.h>
using namespace std;

int main(int argc, char *argv[])
{
    char now[64];
    time_t tt;
    struct tm *ttime;
    //tt = atol(argv[1]);
    tt = 1212132599;
    //time(&tt);
    ttime = localtime(&tt);
    strftime(now, 64, "%Y-%m-%d %H:%M:%S", ttime);
    cout << "the time is " << now << endl;
}

阿飞
2021年10月24日

C++时间戳(毫秒)转为日期格式(年月日时分秒)

 

阿飞

2021年10月24日

上一篇:Java异常分类


下一篇:洛谷P1119 灾后重建 题解 Floyd算法