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

履歴 編集

macro
<cstdint>

SIZE_MAX(C++11)

# define SIZE_MAX implementation-defined

概要

size_t の最大値。

このマクロの値は65535以上となる。

#include <iostream>
#include <cstdint>

int main()
{
  std::size_t max_value = SIZE_MAX;
  std::cout << static_cast<unsigned long long>(max_value) << std::endl;
}

出力

18446744073709551615

バージョン

言語

  • C++11

処理系