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

履歴 編集

macro
<cstdint>

UINT32_MAX(C++11)

# define UINT32_MAX implementation-defined

概要

uint32_t の最大値を表す定数。

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

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

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

#include <iostream>
#include <cstdint>

int main()
{
  std::cout << UINT32_MAX << std::endl;
}

出力

4294967295

バージョン

言語

  • C++11

処理系