uint8 —— unsigned int, 宽度 8-bit。
如果编译程序规定的 unsigned int (或其它类似的,如 unsigned char)是 8 位的,可在适当的文件中添加下列语句:
typedef uint8 unsigned int;
或
typedef uint8 unsigned char;
其它和 uint8 类似的有:
typedef sint8 signed int; (typedef int8 signed int;)
typedef sint16 signed long int; (typedef int16 signed long int;)
typedef uint16 unsigned long int;
……
通过重定义数据类型名称,使得变量的类型(signed / unsigned)和宽度 (8 / 16) 一目了然,帮助编写代码时避免一些可能的误用变量类型的错误。
uint8 —— unsigned int, 宽度 8-bit。
如果编译程序规定的 unsigned int (或其它类似的,如 unsigned char)是 8 位的,可在适当的文件中添加下列语句:
typedef uint8 unsigned int;
或
typedef uint8 unsigned char;
其它和 uint8 类似的有:
typedef sint8 signed int; (typedef int8 signed int;)
typedef sint16 signed long int; (typedef int16 signed long int;)
typedef uint16 unsigned long int;
……
通过重定义数据类型名称,使得变量的类型(signed / unsigned)和宽度 (8 / 16) 一目了然,帮助编写代码时避免一些可能的误用变量类型的错误。
举报