Defined in header <thread> | ||||
---|---|---|---|---|
| (since C++11) |
Blocks the execution of the current thread for at least the specified sleep_duration
.
A steady clock is used to measure the duration. This function may block for longer than sleep_duration
due to scheduling or resource contention delays.
Parameters
sleep_duration | - | time duration to sleep |
Return value
(none).
Exceptions
Any exception thrown by clock, time_point, or duration during the execution (clocks, time points, and durations provided by the standard library never throw).
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #include <iostream> #include <chrono> #include <thread> int main() { using namespace std::literals; std::cout << "Hello waiter" << std::endl; auto start = std::chrono::high_resolution_clock::now(); std::this_thread::sleep_for(2s); auto end = std::chrono::high_resolution_clock::now(); std::chrono::duration< double , std::milli> elapsed = end-start; std::cout << "Waited " << elapsed.count() << " ms\n" ; } |
Possible output:
1 2 | Hello waiter Waited 2000.12 ms |
See also
(C++11) | stops the execution of the current thread until a specified time point (function) |
Please login to continue.