#include <stdio.h>
#include <stdckdint.h>
#include <stdint.h>
//#include <stdbool.h> // needed when compiled as c++ with -std=c++23
int main()
{
int64_t value1 = 34;
int32_t value2 = 177;
uint8_t result;
bool overflowed = ckd_add(&result, value1, value2);
if (overflowed) {
printf("result overflowed\n");
} else {
printf("result is %hhu\n", result);
}
return 0;
}
上述代码在使用 -std=C23 编译为 C 时,可以使用 GCC 顺利编译,但使用 -std=c++23 编译为 C++ 时则无法顺利编译。请参阅https://godbolt.org/z/Tsf7MahPe
错误是
<source>:13:23: error: '_Bool' was not declared in this scope
13 | bool overflowed = ckd_add(&result, value1, value2);
具有讽刺意味的是,你必须在 C++ 中包含 <stdbool.h>,但在 C 中却不需要:D。
-> 在 C++ 中使用 C std 库时,是否可以指定 C23 模式(或任何其他模式,特别是 GCC)?
(我假设出现此错误是因为 C lib 不在 C23 模式,因此没有 bool 和 _Bool)
编辑:我的假设是错误的。C 版本已经是 C23,否则ckd_add
应该不可用。不过,原始问题尚未得到解答。