当前本地时间高精度
Posted 独孤酷酷
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了当前本地时间高精度相关的知识,希望对你有一定的参考价值。
1 #include <chrono> 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<std::chrono::system_clock, std::chrono::microseconds> t_n = 9 std::chrono::time_point_cast<std::chrono::microseconds>(t_now); 10 11 time_t nt = std::chrono::system_clock::to_time_t(t_now); 12 struct tm btm; 13 #ifdef _WIN32 14 localtime_s(&btm, &nt); 15 #else 16 localtime_r(&nt, &btm); 17 #endif 18 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 }
以上是关于当前本地时间高精度的主要内容,如果未能解决你的问题,请参考以下文章