gpt4 book ai didi

c++ - 有没有办法计算出#defined 术语?

转载 作者:太空狗 更新时间:2023-10-29 19:47:01 25 4
gpt4 key购买 nike

#define BLAH word

cout << BLAH;

有什么办法吗?

最佳答案

尝试

#define STRINGIFY(x) #x
#define STRINGIFYMACRO(y) STRINGIFY(y)

#define BLAH word
cout << STRINGIFYMACRO(BLAH);

额外的间接级别导致宏的值被字符串化,而不是宏的名称。

Tested on ideone .

关于c++ - 有没有办法计算出#defined 术语?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4687747/

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