c/c++如何获取任意时间的时间戳
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c/c++如何获取任意时间的时间戳相关的知识,希望对你有一定的参考价值。
参考技术A #include <iostream>#include <time.h>
#include <stdlib.h>
int main(int argc, char *argv[])
time_t curtime = time(NULL);
tm *ptm = localtime(&curtime);
char buf[64];
sprintf(buf, "%d/%02d/%02d %02d:%02d:%02d", ptm->tm_year+1900, ptm->tm_mon+1,
ptm->tm_mday, ptm->tm_hour, ptm->tm_min, ptm->tm_sec);
std::cout << buf << std::endl;
return 0;
以上是关于c/c++如何获取任意时间的时间戳的主要内容,如果未能解决你的问题,请参考以下文章