Java 中 == 和 equals() 方法的区别。
equals() 方法将该字符串与指定对象进行比较。当且仅当参数不为 null 且是表示与该对象相同的字符序列的字符串对象时,结果才为 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