C++ 計時器

來源:互聯網
上載者:User

      程式中經常需要用到計時功能來對代碼的效率進行粗略的衡量,因此常要用到clock()函數,該函數是包含在time.h的標頭檔中的。

       計時功能是基於clock_t這種資料類型的,在time.h檔案中可以發現其定義:

/* Define the implementation defined time type */</p><p>#ifndef _TIME_T_DEFINED<br />typedef long time_t; /* time value */<br />#define _TIME_T_DEFINED /* avoid multiple def's of time_t */<br />#endif</p><p>#ifndef _CLOCK_T_DEFINED<br />typedef long clock_t;<br />#define _CLOCK_T_DEFINED<br />#endif

clock_t實際上是就是指長整型的資料類型。

 

計時功能具體的使用方法是:

#include <stdio.h><br />#include <time.h></p><p>int main()<br />{<br />clock_t start, finish;<br />start = clock();</p><p>int counter = 0;<br />for(int i=0; i<1000000; i++)<br />{<br />counter++;<br />}</p><p>finish = clock();</p><p>printf("該程式已耗用時間為:%d 秒/n", (finish - start) / CLOCKS_PER_SEC);<br /> /* Clock ticks macro - ANSI version */<br /> //CLOCKS_PER_SEC 在time.h中的定義為:<br /> //#define CLOCKS_PER_SEC 1000<br /> //同時說明clock()的傳回值是毫秒</p><p>getchar();<br />return 0;<br />}

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.