Are dollar-signs allowed in identifiers in C++03?

前端 未结 7 2346
深忆病人
深忆病人 2020-12-03 14:38

What does the C++ standard say about using dollar signs in identifiers, such as Hello$World? Are they legal?

相关标签:
7条回答
  • 2020-12-03 15:04

    They are illegal. The only legal characters in identifiers are letters, numbers, and _. Identifiers also cannot start with numbers.

    0 讨论(0)
提交回复
热议问题