Espaços nominais
Variantes
Ações

Date and time utilities

De cppreference.com
< cpp


 
 
Biblioteca de utilitários
Digite apoio (basic types, RTTI, type traits)
Gerenciamento de memória dinâmica
De tratamento de erros
Utilidades do programa
Variadic funções
Data e hora
Objetos de função
(C++11)
Os operadores relacionais
Original:
Relational operators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
rel_ops::operator!=
rel_ops::operator>
rel_ops::operator<=
rel_ops::operator>=
Pares e tuplas
Original:
Pairs and tuples
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
Troque, avançar e avançar
Original:
Swap, forward and move
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
 
 
C + + inclui suporte para dois tipos de manipulação do tempo:
Original:
C++ includes support for two types of time manipulation:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
  • A biblioteca chrono, um conjunto de tipos flexíveis que controlam o tempo com graus variáveis ​​de precisão (por exemplo, std::chrono::time_point).
    Original:
    The chrono library, a flexible collection of types that track time with varying degrees of precision (e.g. std::chrono::time_point).
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • C-estilo biblioteca de data e hora (por exemplo std::time)
    Original:
    C-style date and time library (e.g. std::time)
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.

NJ biblioteca

A biblioteca chrono define três tipos principais (durações, relógios e pontos de tempo), bem como funções de utilidade e typedefs comuns.
Original:
The chrono library defines three main types (durations, clocks, and time points) as well as utility functions and common typedefs.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Duração

A duração é constituído por um espaço de tempo, definida como um número de períodos de alguma unidade de tempo. Por exemplo, "42 segundos" pode ser representado por uma duração que consiste de 42 período de uma unidade de tempo de 1 segundo.

Defined in header <chrono>
Defined in namespace std::chrono
(C++11)
um intervalo de tempo
Original:
a time interval
The text has been machine-translated via Google Translate.