因为字符串必须写在引号内,Java 会误解这个字符串,并产生错误:
String txt = "We are the so-called "Vikings" from the north.";
避免这个问题的解决方案是使用反斜杠转义字符。
反斜杠 ( ) 转义字符将特殊字符转换为字符串字符:
Escape character | Result | Description |
---|---|---|
' | ' | Single quote |
" | " | Double quote |
\ | Backslash |
该序列" 在字符串中插入双引号:
String txt = "We are the so-called "Vikings" from the north.";
该序列' 在字符串中插入一个单引号:
String txt = "It's alright.";
该序列\ 在字符串中插入一个反斜杠:
String txt = "The character \ is called backslash.";
你适合学Java吗?4大专业测评方法
代码逻辑 吸收能力 技术学习能力 综合素质
先测评确定适合在学习