Converting steady_clock::time_point to time_t

人盡茶涼 提交于 2019-12-03 09:43:08

问题


I'm using the steady_clock for saving the time stamp of some messages. For debug purpose is usefull to have the calendar (or something similar).

For other clocks ther's the static function to_time_t, but on GCC (MinGW 4.8.0) this function is not present.

Now i print something like:

Timestamp: 26735259098242

For timestamp i need a steady_clock so I cannot use system_clock or others.

Edit The previous print is given from the time_since_epoch().count()


回答1:


Assuming you need the steady behavior for internal calculations, and not for display, here's a function you can use to convert to time_t for display.

using std::chrono::steady_clock;
using std::chrono::system_clock;

time_t steady_clock_to_time_t( steady_clock::time_point t )
{
    return system_clock::to_time_t(system_clock::now()
                                          + (t - steady_clock::now()));
}

If you need steady behavior for logging, you'd want to get one ( system_clock::now(), steady_clock::now() ) pair at startup and use that forever after.



来源:https://stackoverflow.com/questions/18361638/converting-steady-clocktime-point-to-time-t

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!