gpt4 book ai didi

c - 在变量名中展开宏值

转载 作者:行者123 更新时间:2023-12-04 10:52:26 25 4
gpt4 key购买 nike

我有

#define MACRO foo

#define Code(m) \
m##Bar

Code(MACRO)

我希望将其解析为 fooBar,但将其解析为 MACROBar。

我需要更改要通过其值解析的宏,而不是其名称。

最佳答案

您需要的是类似函数的辅助宏,它扩展 m将 token 预处理为 foo :

#include <stdio.h>

#define MACRO foo

#define CodeReal(m) \
m##Bar

#define Code(m) CodeReal(m)

int main(void)
{
int Code(MACRO) = 0;

printf("%d\n", fooBar);

return 0;
}

正如 comment below 中所指出的您需要它,因为宏的参数受 ## 约束运算符不会被评估为它们的值(即替换)。上面的代码是解决此类问题的常用方法。

关于c - 在变量名中展开宏值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28267067/

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