首页 > 技术文章 > cpp 计算程序运行时间的两种方法

xy123001 2017-05-19 17:54 原文

1. 

#include <time.h>

time_t begin_t  = clock();
// to do 
time_t finish_t = clock();

cout<<"it cost " << (double )(finish_t - begin_t )/CLOCKS_PER_SEC <<" s"<<endl;

2.

#include <boost/timer.hpp>

boost::timer timer; /
/ to do cout<<" cost time: "<<timer.elapsed() <<endl;

 

推荐阅读