tinySQL  0.1
A self-contained database management system
timer.h
1 //
2 // Created by luke on 22-6-11.
3 //
4 
5 #ifndef TIMER_H
6 #define TIMER_H
7 
8 #include <chrono>
9 
10 using namespace std;
11 using namespace std::chrono;
12 
18 {
19 public:
20  TimerClock()
21  {
22  update();
23  }
24 
25  ~TimerClock()
26  {
27  }
28 
29  void update()
30  {
31  _start = high_resolution_clock::now();
32  }
33  //获取秒
34  double getTimerSecond()
35  {
36  return getTimerMicroSec() * 0.000001;
37  }
38  //获取毫秒
39  double getTimerMilliSec()
40  {
41  return getTimerMicroSec()*0.001;
42  }
43  //获取微妙
44  long long getTimerMicroSec()
45  {
46  //当前时钟减去开始时钟的count
47  return duration_cast<microseconds>(high_resolution_clock::now() - _start).count();
48  }
49 
50 private:
51  time_point<high_resolution_clock>_start;
52 };
53 
54 #endif //TIMER_H
TimerClock
A simple clock wrapper in chrono library.
Definition: timer.h:17