程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++ timer具體代碼應用解讀

C++ timer具體代碼應用解讀

編輯:C++入門知識

C++編程語言中有很多比較實用的內容值得我們在實踐中不斷的去積累經驗來熟練語言以方便我們的實際開發。今天我們將會為大家帶來C++ timer的一些應用技巧,大家可以以此為參考熟練的掌握這一應用技巧。

C++ timer代碼示例:

  1. /this code is writen by c++  
  2. #include <iostream> 
  3. #include <ctime> 
  4. using namespace std;  
  5. class timer{  
  6. clock_t start;   
  7. public:  
  8. timer(); //set new time  
  9. ~timer(); //distory time() and get new time  
  10. };  
  11. timer::timer()  
  12. {  
  13. start = clock;  
  14. }  
  15. timer::~timer()  
  16. {  
  17. clock_t end;  
  18. end=clock();  
  19. cout << "Elapsed time:" << (end-start)/CLOCKS_PER_SEC << endl;  
  20. }  
  21. int main()  
  22. {  
  23. timer ob;  
  24. char c;  
  25. ob.timer();  
  26. //for()  
  27. //cin >> c;  
  28. return 0;  

以上就是對C++ timer應用的相關介紹。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved