std::chrono::treat_as_floating_point

来自cppreference.com
< cpp‎ | chrono
 
 
工具库
语言支持
类型支持(基本类型、RTTI)
库功能特性测试宏 (C++20)
动态内存管理
程序工具
协程支持 (C++20)
变参数函数
调试支持
(C++26)
三路比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
初等字符串转换
(C++17)
(C++17)

 
 
 
在标头 <chrono> 定义
template< class Rep >
struct treat_as_floating_point : std::is_floating_point<Rep> {};
(C++11 起)

std::chrono::treat_as_floating_point 特征帮助确定时长是否能转换成拥有另一种不同计次周期的时长。

两个时长间的隐式转换通常依赖于时长的计次周期。然而若 std::chrono::treat_as_floating_point<Rep>::value == true 则不管计次周期如何,均可发生隐式转换。

辅助变量模板

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

示例

#include <chrono>
#include <iostream>
#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 << "运行一些耗时代码...\n";
    timed_piece_of_code();
 
    auto stop = std::chrono::high_resolution_clock::now();
 
    // 浮点毫秒类型
    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");
 
    // 注意此处不允许隐式转换
    auto i_ms = std::chrono::duration_cast<std::chrono::milliseconds>(stop - start);
 
    // 注意此处允许隐式转换
    auto f_ms = FpMilliseconds(stop - start);
 
    std::cout << "计时统计:\n";
 
    std::cout << "  使用默认表示的按毫秒计时间: "
              << i_ms.count() << '\n';
 
    std::cout << "  使用浮点表示的按毫秒计时间: "
              << f_ms.count() << '\n';
}

可能的输出:

运行一些耗时代码...
计时统计:
  使用默认表示的按毫秒计时间: 2
  使用浮点表示的按毫秒计时间: 2.57307

参阅