复制步骤:
将以下行插入 c++ 源代码的任何行。
#1234
任何一行,包括第一行、最后一行。甚至你可以像这样在函数头和正文之间输入。
int foo()
#1234
{
return 0;
}
数字可以很长,我测试了170多个字符。如果添加任何非数字字符,则会出现编译错误。
我的问题是:为什么 # 后跟一个数字不会破坏编译,而 # 后跟一个非数字字符会。
谢谢大家的时间。
That is a line directive. Most preprocessors output these to tell the compiler which lines it actually is in the original source file.
As the preprocessor can add many (sometimes hundreds or even thousands) lines to the source it provides to the compiler, the compiler needs to way to keep track of the line numbers of the original source file. This is done through special directives such as that.
当我使用 GCC 编译它时,我收到以下警告:
warning: style of line directive is a GCC extension [enabled by default]
换句话说,这不是标准 C++,而是特定的编译器扩展(在这种情况下是预处理器扩展,特别是line 指令)。
因此,您应该参考编译器的文档来检查什么是允许的,什么是不允许的。例如,看到这个。