更新时间:2022-09-23 10:30:28 来源:极悦 浏览927次
因为字符串必须写在引号内,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.";
0基础 0学费 15天面授
Java就业班有基础 直达就业
业余时间 高薪转行
Java在职加薪班工作1~3年,加薪神器
工作3~5年,晋升架构
提交申请后,顾问老师会电话与您沟通安排学习