作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
定义了一个选项(值 = 1 或 2)以在两条指令之间进行选择,我想使用带有逗号的指令。
#define option 1
#if option == 1
#define my_instr(instr1, instr2) instr1
#else if option == 2
#define my_instr(instr1, instr2) instr2
#endif
它可以工作,但是当指令中有逗号时,我遇到了问题。
例如:
program main
my_instr(print *,"opt 1", print * ,"opt 2")
end program main
不编译 (gftran -cpp):args 太多。我没事。
因此,为了转义逗号,添加了括号:my_instr((print *,"opt 1"), (print *,"opt 2"))
但由于括号的原因,它不再编译。
我该如何解决?
最佳答案
使用答案(https://stackoverflow.com/a/46311121/7462275),我找到了一个“解决方案”。
#define option 2
#define unparen(...) __VA_ARGS__
#if option == 1
#define my_instr(instr1, instr2) unparen instr1
#elif option == 2
#define my_instr(instr1, instr2) unparen instr2
#endif
program main
my_instr((print *,"opt 1"), (print * ,"opt 2"))
end program main
但是,
gfortran -cpp
无法编译(__VA_ARGS__
的问题)。所以,在gfortran
cpp -P
__VA_ARGS__
:在没有something
的情况下使用__VA_ARGS__
不是标准的(参见评论:关于Fortran 和 cpp 选项 : How to protect a comma?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73426613/
我是一名优秀的程序员,十分优秀!