最佳答案
我有一个关于 c + + 中预处理器指令的问题:
例如:
#ifndef QUESTION
//some code here
#ifndef QUESTION
//some code here
#endif
#endif
我们可以这样使用它吗? C + + 编译器能否以正确的方式匹配 ifndef
和 endif
?