std::chrono::high_resolution_clock::time_point 怎么复位为0
时间: 2023-08-03 13:03:42 浏览: 191
`std::chrono::high_resolution_clock::time_point` 表示时间点,它不能直接赋值为 0 来复位。不过,我们可以使用该类的 `min()` 函数来得到一个最小时间点,然后将其赋值给一个 `std::chrono::high_resolution_clock::time_point` 类型的变量,从而实现复位。
代码示例如下:
```cpp
#include <chrono>
#include <iostream>
int main() {
auto start = std::chrono::high_resolution_clock::now();
// do some work
auto end = std::chrono::high_resolution_clock::now();
auto elapsed = std::chrono::duration_cast<std::chrono::nanoseconds>(end - start).count();
std::cout << "Elapsed time: " << elapsed << " nanoseconds." << std::endl;
// reset
auto zero = std::chrono::high_resolution_clock::time_point::min();
start = zero;
end = zero;
elapsed = 0;
std::cout << "Elapsed time after reset: " << elapsed << " nanoseconds." << std::endl;
return 0;
}
```
在上面的示例中,我们定义了一个 `zero` 变量,它保存了 `std::chrono::high_resolution_clock::time_point::min()` 的返回值,即最小时间点。然后,我们将 `start` 和 `end` 变量都赋值为 `zero`,从而实现了复位。最后,将 `elapsed` 变量赋值为 0,输出复位后的结果。
阅读全文