gpt4 book ai didi

c 库定义了 int8_t

转载 作者:太空宇宙 更新时间:2023-11-03 23:43:57 24 4
gpt4 key购买 nike

来自 stdint.h 以下内容

#ifndef int8_t

typedef signed char int8_t;
#define int8_t int8_t
#define INT8_MIN (-128)
#define INT8_MAX (127)

#endif

#define int8_t int8_t 做什么或定义什么?

最佳答案

它定义了int8_t作为一个宏,其存在可以用 #ifndef int8_t 来测试,大概是为了防止 int8_t免于被定义两次。

我不知道为什么它会这样做。使用单个 include guard 会更有意义围绕整个<stdint.h>标题。

(在此答案的先前版本中,我断言该实现不符合要求,因为它将 int8_t 定义为宏。这样做是不必要的,但并非无效。引用 N1570 7.1.3:

Each identifier with file scope listed in any of the following subclauses (including the future library directions) is reserved for use as a macro name and as an identifier with file scope in the same name space if any of its associated headers is included.

因此标识符 int8_t保留用作宏,并且允许实现的宏定义。)

这是从什么实现的?

关于c 库定义了 int8_t,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39296413/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com