std::chrono::high_resolution_clock 和 std::chrono::seconds 可以 = 0 复位信息吗。复位方法 demo
时间: 2023-08-02 10:07:30 浏览: 89
`std::chrono::high_resolution_clock` 和 `std::chrono::seconds` 都是 C++11 中的时间库,它们不能直接赋值为 0 来复位信息。不过,我们可以通过一些方法来实现复位。
对于 `std::chrono::high_resolution_clock`,我们可以使用该类的 `now()` 函数获取当前时间,并将其保存为一个变量。然后,在需要复位时,我们可以再次调用 `now()` 函数,计算与前一次保存时间的差值,从而得到经过的时间。最后,将该差值作为参数传递给 `std::chrono::duration` 的构造函数,得到一个值为 0 的时间间隔。代码示例如下:
```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::nanoseconds(0);
elapsed = zero.count();
std::cout << "Elapsed time after reset: " << elapsed << " nanoseconds." << std::endl;
return 0;
}
```
对于 `std::chrono::seconds`,我们可以使用该类的 `count()` 函数获取当前时间间隔的秒数,并将其保存为一个变量。然后,在需要复位时,我们将该变量赋值为 0。代码示例如下:
```cpp
#include <chrono>
#include <iostream>
int main() {
auto elapsed = std::chrono::seconds(10);
std::cout << "Elapsed time: " << elapsed.count() << " seconds." << std::endl;
// reset
elapsed = std::chrono::seconds(0);
std::cout << "Elapsed time after reset: " << elapsed.count() << " seconds." << std::endl;
return 0;
}
```
阅读全文