linux c 获得当前时间精确到毫秒
·
#include <sys/time.h>
#include <stdio.h>
#include <unistd.h>
#include<iostream>
#include<string>
using namespace std;
string GetLocalTimeWithMs(void)
{
struct timeval curTime;
gettimeofday(&curTime, NULL);
int milli = curTime.tv_usec / 1000;
char buffer[80] = {0};
struct tm nowTime;
localtime_r(&curTime.tv_sec, &nowTime);//把得到的值存入临时分配的内存中,线程安全
strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", &nowTime);
char currentTime[84] = {0};
snprintf(currentTime, sizeof(currentTime), "%s:%03d", buffer, milli);
return currentTime;
}
int main()
{
std::string current_time = GetLocalTimeWithMs();
std::cout << current_time << std::endl;
return 0;
}
魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐


所有评论(0)