C++编程语言中有很多比较实用的内容值得我们在实践中不断的去积累经验来熟练语言以方便我们的实际开发。今天我们将会为大家带来C++ timer的一些应用技巧,大家可以以此为参考熟练的掌握这一应用技巧。
C++ timer代码示例:
- /this code is writen by c++
- #include <iostream>
- #include <ctime>
- using namespace std;
- class timer{
- clock_t start;
- public:
- timer(); //set new time
- ~timer(); //distory time() and get new time
- };
- timer::timer()
- {
- start = clock;
- }
- timer::~timer()
- {
- clock_t end;
- end=clock();
- cout << "Elapsed time:" << (end-start)/CLOCKS_PER_SEC << endl;
- }
- int main()
- {
- timer ob;
- char c;
- ob.timer();
- //for()
- //cin >> c;
- return 0;
- }
以上就是对C++ timer应用的相关介绍。
【编辑推荐】