std::chrono::steady_clock
Aus cppreference.com
![]() | This page has been machine-translated from the English version of the wiki using Google Translate. The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
definiert in Header <chrono> | ||
class steady_clock; | (seit C++11) | |
Klasse
std::chrono::steady_clock
stellt eine monotone Uhr. Die Zeitpunkte dieser Uhr nicht abnehmen, wenn die physikalische Zeit vorwärts bewegt. Diese Uhr ist nicht im Zusammenhang mit Wanduhr Zeit und ist am besten geeignet für Messintervalle .Original:
Class
std::chrono::steady_clock
represents a monotonic clock. The time points of this clock cannot decrease as physical time moves forward. This clock is not related to wall clock time, and is best suitable for measuring intervals.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
std::chrono::steady_clock
erfüllt die Anforderungen der TrivialClock
. Original:
std::chrono::steady_clock
meets the requirements of TrivialClock
. The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Inhaltsverzeichnis |
[Bearbeiten]Mitglied Typen
Mitglied Typ Original: Member type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | Definition |
rep | arithmetischen Typ, der die Anzahl der Zecken in der Uhr Dauer Original: arithmetic type representing the number of ticks in the clock's duration The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
period | a std::ratio Typ, der die Zecke Periode des Taktes, in Sekunden Original: a std::ratio type representing the tick period of the clock, in seconds The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
duration | std::chrono::duration<rep, period> |
time_point | std::chrono::time_point<std::chrono::steady_clock> |
[Bearbeiten]Mitglied Konstanten
bool is_steady [statisch] | stetigen Uhr Fahne, immer true Original: steady clock flag, always true The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (public static Mitglied konstanten) |
[Bearbeiten]Member-Funktionen
[statisch] | gibt eine time_point die den aktuellen Wert der Uhr Original: returns a time_point representing the current value of the clock The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (public static Elementfunktion) |
[Bearbeiten]Siehe auch
(C++11) | Wanduhr Zeit aus dem System-weite Echtzeituhr Original: wall clock time from the system-wide realtime clock The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Klasse) |
(C++11) | die Uhr mit der kürzesten Tick Zeitraum zur Verfügung Original: the clock with the shortest tick period available The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Klasse) |