C/C++教程

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

本文主要是介绍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日

 

阿飞

2021年10月24日

这篇关于C++时间戳(毫秒)转为日期格式(年月日时分秒)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!