计算某段程序运行的时间

#include <iostream>
#include <chrono>  // 包含 <chrono> 头文件

int main( int argc, char* argv[], char* envp[]) {
    // 获取当前时间点
    auto start = std::chrono::high_resolution_clock::now();

    for(int i=0;i<10000;i++)  std::cout<<"hello_time"<<std::endl;

    // 获取当前时间点
    auto end = std::chrono::high_resolution_clock::now();

    // 计算时间差,即运行时间
    std::chrono::duration<double,std::milli> duration = end - start;

    // 输出运行时间,以秒为单位
    std::cout << "Time taken: " << duration.count() << " ms" << std::endl;
}
posted @ 2023-08-30 15:56  无形深空  阅读(12)  评论(0编辑  收藏  举报