Questions tagged «trigraphs»

4
??!??!运算符在C中执行?
我看到了一行C,看起来像这样: !ErrorHasOccured() ??!??! HandleError(); 它编译正确,似乎可以正常运行。看起来它正在检查是否发生了错误,如果发生,它将进行处理。但是我不太确定它的实际作用或运行方式。看起来程序员似乎正在尝试表达他们对错误的感受。 我以前从未??!??!在任何编程语言中见过它,并且在任何地方都找不到它的文档。(Google无法帮助搜索字词,例如??!??!)。它是做什么的,代码示例如何工作?
1989 c  operators  trigraphs 

9
Trigraph序列在C ++中的用途?
根据C ++'03 Standard 2.3 / 1: 在进行任何其他处理之前,以下三个字符序列之一(“字母序列”)的每次出现都被表1中指示的单个字符代替。 ---------------------------------------------------------------------------- | trigraph | replacement | trigraph | replacement | trigraph | replacement | ---------------------------------------------------------------------------- | ??= | # | ??( | [ | ??< | { | | ??/ | \ | ??) | ] | ??> | } | | ??’ …
127 c++  c++03  trigraphs 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.