Java 中的 == 运算是 equals() 方法的区别。
equals() 方法将此字符串与指定对象进行比较。仅当参数不为 null,并且是表示与此对象相同的字符序列的 String 对象时,结果才为 true。
示例
public class Sample {
public static void main(String []args) {
String s1 = "tutorialspoint";
String s2 = "tutorialspoint";
String s3 = new String ("Tutorials Point");
System.out.println(s1.equals(s2));
System.out.println(s2.equals(s3));
}
}输出
true false
还可以使用 == 运算符比较两个字符串。但是,它比较的是给定变量的引用,而不是值。
示例
public class Sample {
public static void main(String []args) {
String s1 = "tutorialspoint";
String s2 = "tutorialspoint";
String s3 = new String ("Tutorials Point");
System.out.println(s1 == s2);
System.out.println(s2 == s3);
}
}输出
true false
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP