gpt4 book ai didi

c++ - 如何检查 uint8_t 是否作为类型而不是 unsigned char 存在?

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:25:21 25 4
gpt4 key购买 nike

我有两个编译器,一个可以识别 uint8_t(GCC ARM-EABI),另一个不能(瑞萨 M16 标准工具链)。

Renesas 工具链不符合 ANSI C,因此您可以扔掉 .所以 uint8_t、uint16_t... 未定义为现有类型。

为了保持可移植性,我希望有相同的类型(最好是 uint8_t,由于 int 的歧义)。

我的平台也是不同大小的处理器(ARM 是 32 位,Renesas 是 16 位)。使 int 成为不同的值。

有没有办法检查 uint8_t 是否作为一个类型存在?

如果不是,将其(以及其他 uint16_t、uint32_t、...)声明为类型?

最佳答案

Is there a way to check if uint8_t exists as a type?

使用:

#include <stdint.h>

#ifdef UINT8_MAX
...
#endif

关于c++ - 如何检查 uint8_t 是否作为类型而不是 unsigned char 存在?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18131032/

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