Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 937 Bytes

size_t.md

File metadata and controls

38 lines (29 loc) · 937 Bytes

size_t

  • cstddef[meta header]
  • std[meta namespace]
  • type-alias[meta id-type]
namespace std {
  using size_t = implementation-defined;
}

概要

size_tは、オブジェクトのバイト数を表現できる程度に十分に大きい符号なし整数型である。 C++03まではC言語と同じく「sizeof演算子によって返される符号なし整数型」と規定されていた。

オブジェクトのバイト数(例えばmallocの引数)やコンテナの要素数(例えばstd::size()の戻り値)を表現するために用いられる。

#include <cstddef>
#include <cassert>

int main()
{
  std::size_t n = sizeof('a');
  assert(n == 1);
}
  • std::size_t[color ff0000]

出力

参照