• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    macro
    <climits>

    LLONG_MAX

    # define LLONG_MAX implementation-defined
    

    概要

    long long 型が表現できる値の最大値。

    std::numeric_limits<long long>::max() と等しいが、LLONG_MAX#if などのプリプロセッサディレクティブで使用できる。

    具体的な値は実装依存であるが、9223372036854775807(263 - 1)以上であることが規格で定められている。このマクロによって定義される値の型は long long である。

    #include <climits>
    #include <iostream>
    
    int main()
    {
      std::cout << LLONG_MAX << '\n';
    }
    

    出力例

    9223372036854775807
    

    バージョン

    言語

    • C++11

    処理系

    • Clang: 3.0 , 3.1 , 3.2 , 3.3 , 3.4
    • GCC: 4.3.6 , 4.4.7 , 4.5.3 , 4.5.4 , 4.6.4 , 4.7.3 , 4.8.1 , 4.8.2 , 4.9.0
    • ICC: ??
    • Visual C++: 2005 , 2008 , 2010