• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    variable
    <limits>

    std::numeric_limits::radix

    // C++03
    static const int radix;
    
    // C++11
    static constexpr int radix;
    

    概要

    digitsを表現する基数を示す

    #include <iostream>
    #include <limits>
    
    int main()
    {
      constexpr int d = std::numeric_limits<int>::radix;
      constexpr int c = std::numeric_limits<char>::radix;
      constexpr int f = std::numeric_limits<double>::radix;
    
      std::cout << "int : " << d << std::endl;
      std::cout << "char : " << c << std::endl;
      std::cout << "double : " << f << std::endl;
    }
    

    出力例

    int : 2
    char : 2
    double : 2