gpt4 book ai didi

c - 宏内#if#endif

转载 作者:行者123 更新时间:2023-11-30 15:27:59 25 4
gpt4 key购买 nike

在我的代码中,我使用了很多表达式,例如:

#if DEBUG
printf("Some text = %d", param);
#endif

我想知道是否可以将其更改为宏,例如:

DEBUG("Some text = %d", param); 

或者至少:

DEBUG("Some text =", param);

最佳答案

#ifdef DEBUG
#define DPRINTF(...) printf(__VA_ARGS__)
#else
#define DPRINTF(...)
#endif

这样就够了吗?

关于c - 宏内#if#endif,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26767322/

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