std::chrono::treat_as_floating_point
提供: cppreference.com
<tbody>
</tbody>
| ヘッダ <chrono> で定義
|
||
template <class Rep> struct treat_as_floating_point : std::is_floating_point<Rep> {}; |
(C++11以上) | |
std::chrono::treat_as_floating_point 特性は、 duration が異なる刻み幅を持つ別の duration に変換可能かどうかの判定を補助します。
2つの duration 間の暗黙の変換は、通常、その duration の刻み幅に依存します。 しかし、 std::chrono::treat_as_floating_point<Rep>::value == true であれば、刻み幅によらず、暗黙の変換が発生し得ます。
ヘルパー変数テンプレート
<tbody> </tbody> template< class Rep > inline constexpr bool treat_as_floating_point_v = treat_as_floating_point<Rep>::value; |
(C++17以上) | |
特殊化
std::chrono::treat_as_floating_point はプログラム定義型に対して特殊化しても構いません。
例
Run this code
#include <iostream>
#include <chrono>
#include <thread>
void timed_piece_of_code()
{
std::chrono::milliseconds simulated_work(2);
std::this_thread::sleep_for(simulated_work);
}
int main()
{
auto start = std::chrono::high_resolution_clock::now();
std::cout << "Running some timed piece of code..." << '\n';
timed_piece_of_code();
auto stop = std::chrono::high_resolution_clock::now();
// A floating point milliseconds type
using FpMilliseconds =
std::chrono::duration<float, std::chrono::milliseconds::period>;
static_assert(std::chrono::treat_as_floating_point<FpMilliseconds::rep>::value,
"Rep required to be floating point");
// Note that implicit conversion is not allowed here
auto i_ms = std::chrono::duration_cast<std::chrono::milliseconds>(stop - start);
// Note that implicit conversion is allowed here
auto f_ms = FpMilliseconds(stop - start);
std::cout << "Time in milliseconds, using default rep: "
<< i_ms.count() << '\n';
std::cout << "Time in milliseconds, using floating point rep: "
<< f_ms.count() << '\n';
}
出力例:
Running some timed piece of code...
Timing stats:
Time in milliseconds, using default rep: 2
Time in milliseconds, using floating point rep: 2.57307