欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

u8、u16、u32、s8、s16、s32、Size_t是什么类型?

程序员文章站 2022-07-05 11:06:15
...

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;

详细解释:https://blog.csdn.net/elen005/article/details/79516136

(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.例子:

u8、u16、u32、s8、s16、s32、Size_t是什么类型?

运行结果:

u8、u16、u32、s8、s16、s32、Size_t是什么类型?