• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

    最終更新日時(UTC):
    が更新

    履歴 編集

    variable
    <limits>

    std::numeric_limits::is_iec559

    static const bool is_iec559;     // (1) C++03
    static constexpr bool is_iec559; // (1) C++11
    

    概要

    浮動小数点数型において、型TがIEC 559 (IEEE 754) に準拠しているかを判定する。

    備考

    #include <iostream>
    #include <limits>
    
    int main()
    {
      constexpr bool f = std::numeric_limits<float>::is_iec559;
      constexpr bool d = std::numeric_limits<double>::is_iec559;
    
      std::cout << std::boolalpha;
      std::cout << "float : " << f << std::endl;
      std::cout << "double : " << d << std::endl;
    }
    

    出力例

    float : true
    double : true