本文章已收录于:
“==”和“equals”的比较,主要总一下几方面详细的解释:
1、基本数据类型,如int 、float、doble、long、short、char、byte、boolean。
对于基本数据类型的比较,只能用“==”,不能用equals。比如:
- public static void main(String[] args) {
- char d = 'a';
- char e = 'd';
- char f = 'a';
- System.out.println(d == e);
- System.out.println(f == d);
- }
- public static void main(String[] args) {
- char d = 'a';
- char e = 'd';
- char f = 'a';
- System.out.println(d == e);
- System.out.println(f == d);
- }
public static void main(String[] args) {
char d = 'a';
char e = 'd';
char f = 'a';
System.out.println(d == e);
System.out.println(f == d);
}
运行结果:
- false
- true
false
true
2、对于基本类型的包装类型,如Boolean、Byte、Short、Long、Integer等的引用变量。
“==”是比较地址的,而equals是比较内容的。比如:
- public static void main(String[] args) {
- Integer a = new Integer(1);
- Integer b = new Integer(1);
- Integer c = new Integer(2);
- System.out.println(a.equals(b));
- System.out.println(a.equals(c));
- System.out.println(a == b);
- System.out.println(a == c);
- }
- public static void main(String[] args) {
- Integer a = new Integer(1);
- Integer b = new Integer(1);
- Integer c = new Integer(2);
- System.out.println(a.equals(b));
- System.out.println(a.equals(c));
- System.out.println(a == b);
- System.out.println(a == c);
- }
public static void main(String[] args) {
Integer a = new Integer(1);
Integer b = new Integer(1);
Integer c = new Integer(2);
System.out.println(a.equals(b));
System.out.println(a.equals(c));
System.out.println(a == b);
System.out.println(a == c);
}
运行结果:
- true
- false
- false
- false
true
false
false
false
结果分析:
- a.equals(b),比较的是a和b的值,a和b都是1,所以最终的结果为true。
- a == b ,比较的是对象的地址,a和b是两个对象,所以最终的结果为false。
3、对于字符串变量比较。
“==”比较两个变量本身的值,即两个对象在内存中的地址。
“equals”比较字符串中所包含的内容是否相同。比如:
- public static void main(String[] args) {
- String a = "abc";
- String b = "abc";
- String c = new String("abc");
- System.out.println(a==b);
- System.out.println(a.equals(b));
- System.out.println(a==c);
- System.out.println(a.equals(c));
- }
- public static void main(String[] args) {
- String a = "abc";
- String b = "abc";
- String c = new String("abc");
- System.out.println(a==b);
- System.out.println(a.equals(b));
- System.out.println(a==c);
- System.out.println(a.equals(c));
- }
public static void main(String[] args) {
String a = "abc";
String b = "abc";
String c = new String("abc");
System.out.println(a==b);
System.out.println(a.equals(b));
System.out.println(a==c);
System.out.println(a.equals(c));
}
运行结果:
- true
- true
- false
- true
true
true
false
true
结果分析:
- a==b,a和b是字符串常量生成的变量,所以内存地址是一样的。所以结果为true。
- a.equals(b),比较的是内容。所以结果为true
- a==c,“==”比较的是内存地址,所以结果为false
- a.equals(c),同a.equals(b)。
4、对于非字符串变量的其他引用变量。
“==”和“equals”方法的作用是相同的,都是用来比较其对象在堆内存的地址,即用来比较两个引用变量是否指向同一个对象。比如:
- public static void main(String[] args) {
- User a = new User();
- User b = new User();
- User c = a;
- System.out.println(a == b);
- System.out.println(a.equals(b));
- System.out.println(a == c);
- System.out.println(a.equals(c));
- }
- public static void main(String[] args) {
- User a = new User();
- User b = new User();
- User c = a;
- System.out.println(a == b);
- System.out.println(a.equals(b));
- System.out.println(a == c);
- System.out.println(a.equals(c));
- }
public static void main(String[] args) {
User a = new User();
User b = new User();
User c = a;
System.out.println(a == b);
System.out.println(a.equals(b));
System.out.println(a == c);
System.out.println(a.equals(c));
}
运行结果:
- false
- false
- true
- true
false
false
true
true
总结:
通过以上4中情况的分析,我们发现“==”除了基本数据类型以外,比较的都是两个变量的地址。而“equals”不能用于基本数据类型的比较。在非字符串引用变量的比较中比较的是两个变量在堆内存中的地址,比较两个变量是否指向同一个对象。而对于字符串变量的比较,比较的是两个变量的内容是否相等。
如果有更好的解释请大家多多指教,谢谢。
-
顶
- 0
-
踩
- 0