博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
当前本地时间高精度
阅读量:5113 次
发布时间:2019-06-13

本文共 732 字,大约阅读时间需要 2 分钟。

1 #include 
2 void current_time() 3 { 4 // 当前时间点 5 std::chrono::system_clock::time_point t_now = 6 std::chrono::high_resolution_clock::now(); 7 // 转换精度到微秒级别 8 std::chrono::time_point
t_n = 9 std::chrono::time_point_cast
(t_now);10 11 time_t nt = std::chrono::system_clock::to_time_t(t_now);12 struct tm btm;13 #ifdef _WIN3214 localtime_s(&btm, &nt);15 #else16 localtime_r(&nt, &btm);17 #endif18 19 char mbstr[256] = { 0 };20 strftime(mbstr, sizeof(mbstr), "%Y-%m-%d %H:%M:%S", &btm);21 printf("%s.%06" PRIu64 "\n", mbstr, t_n.time_since_epoch() % 1000000);22 }

 

转载于:https://www.cnblogs.com/suyunhong/p/9076532.html

你可能感兴趣的文章
[CF1093G] Multidimensional Queries
查看>>
sprintf函数、snprintf函数、asprintf函数、vsprintf
查看>>
第二次冲刺个人博客02
查看>>
nginx通过反向代理实现未备案域名访问详解
查看>>
[转载] 七龙珠第一部——第029话 冒险再度开始
查看>>
Handbook of Constraints Programming——Chapter4 Backtracking Search Algorithms-Preliminaries
查看>>
yii2 关系...
查看>>
电容-1
查看>>
老虎ji 剪枝模拟
查看>>
为何主程序退出了,创建的多线程还在运行呢?
查看>>
wpf版扫雷游戏
查看>>
检测重编译
查看>>
一些关于angular的总结
查看>>
数据库分页代码
查看>>
react组件生命周期
查看>>
Unity3D碰撞触发函数
查看>>
js正则表达式处理表单
查看>>
闭包函数 装饰器
查看>>
VPS常用工具
查看>>
delphi 基础
查看>>