最終更新日時:
が更新

履歴 編集

macro
<cstdint>

INTPTR_MIN(C++11)

#define INTPTR_MIN implementation-defined

概要

intptr_t の最小値。

ビット数16をNとして、このマクロの値は-(2N-1 - 1)以下となる。

備考

  • このマクロの定義有無
    • C++11 : このマクロを定義するかどうかは処理系定義である (intptr_tが定義される場合にのみ定義される)
    • C++29 : このマクロは必ず定義される

#include <iostream>
#include <cstdint>

int main()
{
  std::intptr_t min_value = INTPTR_MIN;
  std::cout << static_cast<long long>(min_value) << std::endl;
}

出力例

-9223372036854775808

バージョン

言語

  • C++11

処理系

参照