无符号
请求无符号版本的整数类型的类型说明符。
- 单独使用时,暗示
int
,因此unsigned
与unsigned int
的类型相同。 unsigned char
的类型与char
的类型不同,即使char
是无符号的。它可以保持至少 255 的整数。unsigned
也可以与short
,long
或long long
结合使用。它不能与bool
,wchar_t
,char16_t
或char32_t
结合使用。
例:
char invert_case_table[256] = { ..., 'a', 'b', 'c', ..., 'A', 'B', 'C', ... };
char invert_case(char c) {
unsigned char index = c;
return invert_case_table[index];
// note: returning invert_case_table[c] directly does the
// wrong thing on implementations where char is a signed type
}