0

希望获得以下示例功能的答案和实际示例:

string str =" my \v question ";

并带有这些逃生标志:

  • \0

  • \r

  • \f

4

1 回答 1

5

这些是可接受的序列字符列表。

Escape Sequence Character
\a  Bell (beep)
\b  Backspace
\f  Formfeed
\n  Newline
\r  Return
\t  Tab
\\  Backslash
\'  Single quote
\"  Double quote
\xdd    Hexadecimal representation

http://www.gillius.org/ctut/app_a.htm

于 2012-08-13T17:12:19.517 回答