首页 > 其他 > 详细

代码运行时间

时间:2014-04-10 14:04:45      阅读:523      评论:0      收藏:0      [点我收藏+]

c++

1)GetTickCount()

1
2
3
4
5
6
7
8
9
10
#inlcude <windows.h><br>int main()
{
  DWORD start_time = GetTickCount();
  {
    //code
  }
  DWORD end_time = GetTickCount();
  cout << "running times:" << end_time-start_time << "ms" << endl;
  return 0;
}

  

2)clocl()

bubuko.com,布布扣
#include <time.h>
int main()
{
  clock_t start_time = clock();
  {
   //code
  }
  clock_t end_time = clock();
  cout << "running time:" << static_cast<double>(end_time-start_time)/CLOCK_PER_SEC*1000 << "ms" << endl;
  return 0;
}
bubuko.com,布布扣

 

代码运行时间,布布扣,bubuko.com

代码运行时间

原文:http://www.cnblogs.com/buptlyn/p/3652954.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!