u8、u16、u32、s8、s16、s32、Size_t是什么类型?types是什么意思
1.u8就是unsigned char ,是8位⽆符号char类型的值
/*!< Signed integer types  */
typedef  signed char    int8_t;
typedef  signed short    int16_t;
typedef  signed long    int32_t;
/*!< Unsigned integer types  */
typedef unsigned char    uint8_t;
typedef unsigned short    uint16_t;
typedef unsigned long    uint32_t;
/*!< STM8Lx Standard Peripheral Library old types (maintained for legacy purpose) */
typedef int32_t  s32;
typedef int16_t s16;
typedef int8_t  s8;
typedef uint32_t  u32;
typedef uint16_t u16;
typedef uint8_t  u8;
2.Size_t
(1)size_t
size_t是C++标准在stddef.h中定义的。这个类型⾜以⽤来表⽰对象的⼤⼩。size_t的真实类型与有关。size_t在32位架构上是4字节,在64位架构上是8字节,在不同架构上进⾏编译时需要注意这个问题。⽽int在不同架构下都是4字节,与size_t不同;且int为带符号
数,size_t为⽆符号数。
在32位中被普遍定义为:typedef  unsigned int size_t;
⽽在64位架构中被定义为:typedef  unsigned long size_t;
(2)ssize_t
ssize_t是有符号整型,在32位机器上等同与int,在64位机器上等同与long int
在32位中被普遍定义为:typedef  int size_t;
⽽在64位架构中被定义为:typedef long size_t;
.(3)size_t和ssize_t作⽤
size_t⼀般⽤来表⽰⼀种计数,⽐如有多少东西被拷贝等。例如:sizeof操作符的结果类型是size_t,该类型保证能容纳实现所建⽴的最⼤对象的字节⼤⼩。 它的意义⼤致是“适于计量内存中可容纳的数据项⽬个数的⽆符号整数类型”。所以,它在数组下标和内存管理函数之类的地⽅⼴泛使⽤。
⽽ssize_t这个数据类型⽤来表⽰可以被执⾏读写操作的数据块的⼤⼩.它和size_t类似,但必需是signed.意即:它表⽰的是signed
size_t类型的。
3.例⼦:
运⾏结果:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。