Namensräume
Varianten

std::common_type(std::chrono::duration)

Aus cppreference.com

<metanoindex/>

 
 
 
 
std::chrono::duration
Member-Funktionen
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
duration::duration
duration::operator=
duration::count
duration::zero
duration::min
duration::max
duration::operator+
duration::operator-
duration::operator++
duration::operator--
duration::operator+=
duration::operator-=
duration::operator*=
duration::operator/=
duration::operator%=
Non-Member-Funktionen
Original:
Non-member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
common_type
operator+
operator-
operator*
operator/
operator%
operator==
operator!=
operator<
operator<=
operator>
operator>=
duration_cast
Helper-Klassen
Original:
Helper classes
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
treat_as_floating_point
duration_values
 
<tbody> </tbody>
template <class Rep1, class Period1, class Rep2, class Period2> struct common_type<std::chrono::duration<Rep1, Period1>, std::chrono::duration<Rep2, Period2>> { typedef std::chrono::duration< typename std::common_type<Rep1, Rep2>::type, /*see note*/> type; };
(seit C++11)
Macht die Typ namens type, die häufigste Form von zwei std::chrono::durations ist .
Original:
Exposes the type named type, which is the common type of two std::chrono::durations.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Hinweis

The period the resulting duration is the greatest common divisor of Period1 and Period2.

Beispiel