What is the purpose of a single pound/hash sign (#) on its own line in the C/C++ preprocessor?

时间秒杀一切 提交于 2019-12-02 16:53:47

A # on its own on a line has no effect at all. I assume it's being used for aesthetic value.

The C standard says:

6.10.7 Null directive

Semantics

A preprocessing directive of the form

# new-line

has no effect.

The C++ standard says the same thing:

16.7 Null directive [cpp.null]

A preprocessing directive of the form

# new-line

has no effect.

It makes the source code look pretty, that's all.

Highlights the fact that the whole block is a preprocessor section.

And indeed, both the C and C++ preprocessors must ignore # on a line.

Always check an authoritative source instead of relying on other resources. C is standardised as ISO 9899::2011, C++ also has an ISO standard. Both are well accepted and the final drafts available by a short search. The C standard states in 6.10.7 (C++ has much the same text):

A preprocessing directive of the form

# new-line

has no effect.

This is a null directive, as much as an ; without a preceeding expression in the core-language is a null statement .

For the preprocessor it is just for formatting/readability to highlight that the lines belong semantically together. (the semicolon OTOH is semantically relevant).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!