我不明白 和 之间的"'"
区别"\'"
。那是,
public class test {
public static void main(String[] args) {
System.out.println("Hello, I'm the best!");
System.out.println("Hello, I\'m the best!");
}
}
给出相同的结果:
Hello, I'm the best!
Hello, I'm the best!
这是语言的特点吗?或者可能有更复杂的描述?Android上是否有相同的结果?