Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 993 Bytes

uint16_t.md

File metadata and controls

36 lines (26 loc) · 993 Bytes

uint16_t

  • cstdint[meta header]
  • std[meta namespace]
  • type-alias[meta id-type]
  • cpp11[meta cpp]
namespace std {
  using uint16_t = unsigned-integer-type;
}
  • unsigned-integer-type[italic]

概要

16ビットの符号なし整数型。この型はパディングビットは存在しない。

この型を実装するかどうかは処理系定義であるが、上記の条件に合致する整数型が処理系に存在する場合には必ず定義されている。

備考

処理系によっては1バイトが8ビットでないことがあり、そういった環境では8ビットの乗数幅を持つ整数型が定義されていない可能性がある。

バージョン

言語

  • C++11

処理系

参照