gpt4 book ai didi

C宏包含 "incomplete"三元运算符

转载 作者:行者123 更新时间:2023-11-30 20:01:22 28 4
gpt4 key购买 nike

我正在尝试编译以下内容(在 MSVC 中):

#define TRAP   (errorCode = (errorCode != 0) ? errorCode :) 

int someFunction(int a) {
printf("Called function with parameter %d\", a);
return (a > 3);
}

int main(void) {
int errorCode = 0;
printf("Error code starts out as %d\n", errorCode); // errorCode should be 0
TRAP someFunction(1);
printf("Error code is now %d\n", errorCode); // errorCode should still be 0
TRAP someFunction(4);
printf("Error code is now %d\n", errorCode); // errorCode should be 1
TRAP someFunction(2);
printf("Error code is now %d\n", errorCode); // errorCode should still be 1, someFunction should not be called.
return 0;
}

但是,我在包含“TRAP”的第一行收到编译器错误

error C2059: syntax error : ')'

我的问题是:为什么?据我了解,宏预处理器只是对“TRAP”的所有实例进行查找替换,并将其替换为最外面括号之间的宏文本。因此,在宏完成工作后,我希望第一行 TRAP 行显示为:

errorCode = (errorCode != 0) ? errorCode : someFunction(1);

这是有效的 C;事实上,将这一行直接插入到我的代码中可以很好地编译。我在这里遗漏了一些宏观的细微差别吗?

如果这是一个愚蠢的问题,我深表歉意——我对宏还很陌生,而且有点困惑。

最佳答案

要让 TRAP 按您希望的方式工作,您需要将 TRAP 定义为

#define TRAP   (errorCode = (errorCode != 0) ? errorCode :

即没有尾随 )。然后,当您使用宏时,您需要提供尾随右括号,如

TRAP someFunction(1));

这有点难看。为了使它看起来有点“更好”,您可以参数化定义,如

#define TRAP(func)   (errorCode = (errorCode != 0) ? errorCode : (func))

然后将其调用为

TRAP(someFunction(1));

祝你好运。

关于C宏包含 "incomplete"三元运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32700581/

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