steady_clock

public static member function
<chrono>

std::chrono::steady_clock::now

static time_point now() noexcept;
Get current time
Returns the current time_point in the frame of the steady_clock.

Parameters

none

Return value

The time_point representing the current time.
time_point is a member type, defined as an alias of time_point<steady_clock>.

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// steady_clock example
#include <iostream>
#include <ctime>
#include <ratio>
#include <chrono>

int main ()
{
  using namespace std::chrono;

  steady_clock::time_point clock_begin = steady_clock::now();

  std::cout << "printing out 1000 stars...\n";
  for (int i=0; i<1000; ++i) std::cout << "*";
  std::cout << std::endl;

  steady_clock::time_point clock_end = steady_clock::now();

  steady_clock::duration time_span = clock_end - clock_begin;

  double nseconds = double(time_span.count()) * steady_clock::period::num / steady_clock::period::den;

  std::cout << "It took me " << nseconds << " seconds.";
  std::cout << std::endl;

  return 0;
}

Possible output:
printing out 1000 stars...
********************************************************************************
********************************************************************************
********************************************************************************
********************************************************************************
********************************************************************************
********************************************************************************
********************************************************************************
********************************************************************************
********************************************************************************
********************************************************************************
********************************************************************************
********************************************************************************
****************************************
It took me 0.084003 seconds.


See also