我们都知道在Java中如何输出helloworld
`
public class helloworld {
public static void main(String[] args){
System.out.println("hello world");
}
}
`
但是如果想输出"hello world"
`public class helloworld {
public static void main(String[] args){
System.out.println(""hello world"");
}
}
`
直接加英文""会报错java: 需要’)'
原因在于双引号与双引号直接配对造成错误
改正方法可以为
public class helloworld {
public static void main(String[] args){
System.out.println("\"hello world\"");
}
}
即在"前加转义符 ****将特殊字符转化为普通字符
背后的知识为:
转义字符出现在特殊字符之前会将特殊字符转变为普通字符。