最近在读代码的时候,遇到了一些数据类型,不太理解是什么意思,于是开始在网上找答案,特此记录一下。
头文件
“stdint.h”
#ifndef __int8_t_defined
# define __int8_t_defined
typedef signed char int8_t;
typedef short int int16_t;
typedef int int32_t;
# if __WORDSIZE == 64
typedef long int int64_t;
# else
__extension__
typedef long long int int64_t;
# endif
#endif
typedef unsigned char uint8_t;
typedef unsigned short int uint16_t;
#ifndef __uint32_t_defined
typedef unsigned int uint32_t;
# define __uint32_t_defined
#endif
#if __WORDSIZE == 64
typedef unsigned long int uint64_t;
#else
__extension__
typedef unsigned long long int uint64_t;
#endif
现在就知道了标题中的数据类型是什么意思,但是只是只有int相关的类型,没有float相关的类型,我也没有找到相关的头文件,但是我找到了他们分别是怎么类型的了,如下:
typedef float float32_t;
typedef long double float64_t;
typedef long double float128_t;
所以,只要加入这两个typedef就可以了。 还有就是,float64_t和float128_t我找到的类型解释都是long double,我也觉得很奇怪,如果有知道的小伙伴可以在评论区留言。
参考链接:**https://blog.csdn.net/nei504293736/article/details/101060693**
|