我有一段代码
typedef unsigned char _uint8;
typedef unsigned short _uint16;
typedef unsigned int _uint32;
typedef float _float32;
typedef char _int8;
typedef short _int16;
typedef int _int32;
我在最后三行的行中遇到错误
错误信息是
错误 C2632: 'char' 后跟 'char' 是非法的
错误 C2632: 'short' 后跟 'short' 是非法的
错误 C2632:'int' 后跟 'int' 是非法的