std::chrono::duration::count
Aus cppreference.com
<tbody>
</tbody>
constexpr rep count() const; |
||
Diese Method gibt die Anzahl der Zeitschritte der Zeitdauer zurück.
Parameter
(None)
Original:
(none)
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.
Rückgabewert
Die Anzahl der Zeitschritter der Zeitdauer.
Beispiel
#include <chrono>
#include <iostream>
int main()
{
std::chrono::milliseconds ms{3}; // 3 milliseconds
// 6000 microseconds constructed from 3 milliseconds
std::chrono::microseconds us = 2*ms;
// 30Hz clock using fractional ticks
std::chrono::duration<double, std::ratio<1, 30>> hz30(3.5);
std::cout << "3 ms duration has " << ms.count() << " ticks\n"
<< "6000 us duration has " << us.count() << " ticks\n"
<< "3.5 30Hz duration has " << hz30.count() << " ticks\n";
}
Output:
3 ms duration has 3 ticks
6000 us duration has 6000 ticks
3.5 30Hz duration has 3.5 ticks
Siehe auch
| wandelt ein Zeitintervall in ein anderes Zeitintervall mit einer anderen Zeitschrittweite um. (Funktions-Template) | |