Java特殊字符的使用 - 极悦
首页 课程 师资 教程 报名

Java特殊字符的使用

  • 2022-09-23 10:30:28
  • 1092次 极悦

因为字符串必须写在引号内,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大专业测评方法

代码逻辑 吸收能力 技术学习能力 综合素质

先测评确定适合在学习

在线申请免费测试名额
价值1998元实验班免费学
姓名
手机
提交