• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    macro
    <cstdint>

    INT8_MIN

    # define INT8_MIN implementation-defined
    

    概要

    int8_t の最小値を表す定数。

    ビット数8をNとして、このマクロの値は-(2N-1)である-128となる。

    その値の型は、int8_tを整数昇格したものとなる。

    なお、このマクロは int8_t が定義されていない場合には定義されない。

    #include <iostream>
    #include <cstdint>
    
    int main()
    {
      std::cout << INT8_MIN << std::endl;
    }
    

    出力

    -128
    

    バージョン

    言語

    • C++11

    処理系