std::chrono::steady_clock
Da cppreference.com.
![]() | Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'header <chrono> | ||
class steady_clock; | (dal C++11) | |
Classe
std::chrono::steady_clock
rappresenta un orologio monotona. I punti di tempo di questo orologio non può diminuire il tempo fisico si muove in avanti. Questo orologio non è relativa a orologio da parete, ed è più adatto per intervalli di misura.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
soddisfi i requisiti di 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.
Indice |
[modifica]Membri tipi
Membro tipo 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 | tipo aritmetico che rappresenta il numero di segni di graduazione nel tempo dell'orologio 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 | un tipo che rappresenta il periodo std::ratio battito dell'orologio, in pochi secondi 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> |
[modifica]Membri costanti
bool is_steady [statico] | orologio bandiera costante, sempre 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. (pubblico membro statico costante) |
[modifica]Membri funzioni
[statico] | restituisce un time_point rappresenta il valore corrente dell'orologio 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. (metodo pubblico statico) |
[modifica]Vedi anche
(C++11) | orologio da parete dal livello di sistema orologio in tempo reale 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. (classe) |
(C++11) | l'orologio con il più breve periodo di zecca disponibili 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. (classe) |