Skip to content

Files

33 lines (25 loc) · 967 Bytes

uint8_t.md

File metadata and controls

33 lines (25 loc) · 967 Bytes

#uint8_t

  • cstdint[meta header]
  • std[meta namespace]
  • typedef[meta id-type]
  • cpp11[meta cpp]
namespace std {
  typedef unsigned-integer-type uint8_t;
}
  • unsigned-integer-type[italic]

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

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

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

##バージョン ###言語

  • C++11

###処理系