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

前端 未结 7 2352
深忆病人
深忆病人 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:01

    Illegal. I think the dollar sign and backtick are the only punctuation marks on my keyboard that aren't used in C++ somewhere (the "%" sign is in format strings, which are in C++ by reference to the C standard).

提交回复
热议问题