uint8类型的数据占几个字节
上海巴鲁图工程机械科技有限公司_
2022-05-15 广告
2022-05-15 广告
按照posix标准,一般整形对应的*_t类型为:1字节 uint8_t;2字节 uint16_t;4字节 uint32_t;8字节 uint64_t;POSIX表示可移植操作系统接口(Portable Operating System In...
点击进入详情页
本回答由上海巴鲁图工程机械科技有限公司_提供
展开全部
sizeof(
uint8)一下
按照posix标准,一般整形对应的*_t类型为:
1字节 uint8_t
2字节 uint16_t
4字节 uint32_t
8字节 uint64_t
C99标准中inttypes.h的内容
00024 typedef signed char int8_t;
00025 typedef unsigned char uint8_t;
00026
00027 typedef int int16_t;
00028 typedef unsigned int uint16_t;
00029
00030 typedef long int32_t;
00031 typedef unsigned long uint32_t;
00032
00033 typedef long long int64_t;
00034 typedef unsigned long long uint64_t;
uint8)一下
按照posix标准,一般整形对应的*_t类型为:
1字节 uint8_t
2字节 uint16_t
4字节 uint32_t
8字节 uint64_t
C99标准中inttypes.h的内容
00024 typedef signed char int8_t;
00025 typedef unsigned char uint8_t;
00026
00027 typedef int int16_t;
00028 typedef unsigned int uint16_t;
00029
00030 typedef long int32_t;
00031 typedef unsigned long uint32_t;
00032
00033 typedef long long int64_t;
00034 typedef unsigned long long uint64_t;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |