如何添加“或” #ifdef 中的条件
如何在 #ifdef 中添加“或”条件?
我试过了:
#ifdef CONDITION1 || CONDITION2
#endif
这行不通。
How can I add a 'or' condition in #ifdef ?
I have tried:
#ifdef CONDITION1 || CONDITION2
#endif
This does not work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
应该有效。 :)
#ifdef
的输入量要少一些,但不适用于更复杂的条件should work. :)
#ifdef
is a bit less typing, but doesn't work well with more complex conditions可以使用这个 -
这也有同样的作用
- 进一步-
#if Defined CONDITION1 &&定义 CONDITION2
#if 定义 CONDITION1 ^ 定义 CONDITION2
#if 定义 CONDITION1 && !定义条件2
May use this-
This also does the same-
Further-
#if defined CONDITION1 && defined CONDITION2
#if defined CONDITION1 ^ defined CONDITION2
#if defined CONDITION1 && !defined CONDITION2
检查一下:
Check this:
我确实对维持严格的列限制有强迫症,并且不喜欢“\”
行继续,因为您不能在其后添加注释,所以这是我的方法。
I am really OCD about maintaining strict column limits, and not a fan of "\"
line continuation because you can't put a comment after it, so here is my method.