The type std::byte
comprises CHAR_BIT
bits, and that may be more than 8.
So, how do I declare a true octet in C++?
The type std::byte
comprises CHAR_BIT
bits, and that may be more than 8.
So, how do I declare a true octet in C++?
Copyright © 2021 Jogjafile Inc.
If the hardware supports 8-bit integers with no padding, then
std::uint8_t
will be defined, and could be used for that purpose.However, this is basically pointless. If
unsigned char
is wider than 8 bits, thenstd::uint8_t
won't be defined because no type can be smaller than a byte in C++.Any "true octet" type is either not going to be portable, or it will require padding. If padding is acceptable, you can define it as follows:
Also, as commenters have pointed out, hardware with no support for 8-bit types is extremely rare. Unless you expect to compile your code for digital signal processors (DSPs) or other unusual hardware, just assume 8-bit bytes. Use
std::uint8_t
, or