C++ chrono system time in milliseconds, time operations(C++ chrono系统时间以毫秒为单位,时间操作)
问题描述
由于 C++11 的文档不足,我遇到了一个小问题.
I've got a small problem caused by insufficient documentation of C++11.
我想以毫秒、纳秒或秒为单位获得自纪元以来的时间,然后我必须将该值转换"为另一个分辨率.我可以使用 gettimeofday() 来完成它,但它会很容易,所以我尝试使用 std::chrono 来实现它.
I'd like to obtain a time since epoch in milliseconds, or nanoseconds or seconds and then I will have to "cast" this value to another resolution. I can do it using gettimeofday() but it will be to easy, so I tried to achieve it using std::chrono.
我试过了:
std::chrono::time_point<std::chrono::system_clock> now =
std::chrono::system_clock::now();
但是我不知道通过这种方式获得的time_point的分辨率是多少,我不知道如何将这个时间作为一个简单的unsigned long long来获得,我也没有任何概念如何将其转换为另一个分辨率.
But I have no idea what is a resolution of obtained in this way time_point, and I don't know how to get this time as a simple unsigned long long, and I haven't any conception how to cast it to another resolution.
推荐答案
你可以用 时钟的分辨率.要转换为毫秒,请使用 duration_cast
:
You can do now.time_since_epoch()
to get a duration representing the time since the epoch, with the clock's resolution. To convert to milliseconds use duration_cast
:
auto duration = now.time_since_epoch();
auto millis = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count();
这篇关于C++ chrono系统时间以毫秒为单位,时间操作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++ chrono系统时间以毫秒为单位,时间操作


基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01