• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    macro
    <cstdint>

    WINT_MAX

    # define WINT_MAX implementation-defined
    

    概要

    wint_t の最大値。

    wint_tが符号付き整数型として定義される場合、このマクロの値は32767以上となる。そうでない場合、このマクロの値は65535以上となる。

    #include <iostream>
    #include <cstdint>
    
    int main()
    {
      std::wint_t max_value = WINT_MAX;
      std::cout << static_cast<long long>(max_value) << std::endl;
    }
    

    出力例

    4294967295
    

    バージョン

    言語

    • C++11

    処理系