参考
http://t.csdnimg.cn/geusG
一、stdint.h简介
stdint.h 是 C 语言标准库中的一个头文件,它在 C99 标准中被引入,目的是提供更为可移植性的整数类型定义。这个头文件定义了一组与位数相关的整数类型,例如有符号整数(integers)和无符号整数(unsigned integers),以确保在不同平台上的整数类型的大小和范围是一致的。
以下是 stdint.h 中定义的一些常见的整数类型:
int8_t:8 位有符号整数
int16_t:16 位有符号整数
int32_t:32 位有符号整数
int64_t:64 位有符号整数
uint8_t:8 位无符号整数
uint16_t:16 位无符号整数
uint32_t:32 位无符号整数