c++获取运行时间差毫秒
时间: 2024-03-11 11:47:38 浏览: 94
同样可以使用 `<chrono>` 头文件中的 `high_resolution_clock` 类来获取 C++ 程序的运行时间差,只需要将 `duration_cast` 的模板参数换成 `milliseconds` 即可。以下是示例代码:
```c++
#include <iostream>
#include <chrono>
using namespace std;
using namespace std::chrono;
int main() {
auto start = high_resolution_clock::now(); // 记录开始时间
// 这里是你的代码
auto end = high_resolution_clock::now(); // 记录结束时间
auto duration = duration_cast<milliseconds>(end - start); // 计算时间差
cout << "运行时间:" << duration.count() << " 毫秒" << endl;
return 0;
}
```
在代码中,我们使用 `duration_cast` 将时间差转换为毫秒,并输出结果。
阅读全文