看了网上很多文章,写的很乱,干脆自己总结了下。
在《java核心技术卷 1》中将 == 归类于关系运算符;
== 常用于相同的基本数据类型之间的比较,也可用于相同类型的对象之间的比较;
在《java核心技术卷 1》中对 Object 类的描述:Object 类是java中所有类的始祖,在java中每个类都是由Object类扩展而来;每个类都默认继承Object类,所以每一个类都有Object类中的方法;从而每一个类都有equals方法;
equals方法主要用于两个对象之间,检测一个对象是否等于另一个对象;
equals方法在Object的代码如下,在代码上可以看出Object的实现类里面equals方法其实也是 == 的关系运算符。
所以问题的关键就是将 == 运算符说明白就好了。
public boolean equals(Object obj) {
return (this == obj);
}
== 运算符是比较栈上数据是否相等,比如基础类型的数据和对象的引用地址都是栈上的数据。
代码例子
public void basicDataTest(){
int intValue1 = 188;
int intValue2 = 188;
float floatValue1 = 188;
char charValue1 = 188;
System.out.println(intValue1 == intValue2);
System.out.println(intValue1 == floatValue1);
System.out.println(intValue1 == charValue1);
}
结果
true
true
true
代码例子
public void yinYongDataTest(){
Object obj1 = new Object();
Object obj2 = new Object();
Object obj3 = obj1;
System.out.println(obj1 == obj2);
System.out.println(obj1 == obj3);
}
结果
false
true
代码例子
public class MyTestMain {
public static void main(String[] args) {
Integer integer1 = new Integer(1024);
int intValue1 = 1024;
boolean b = integer1 == intValue1;
System.out.println(b);
}
}
结果
true
代码反编译
public class top.san.es.MyTestMain {
public top.san.es.MyTestMain();
Code:
0: aload_0
1: invokespecial #1 // Method java/lang/Object."":()V
4: return
public static void main(java.lang.String[]);
Code:
0: new #2 // class java/lang/Integer
3: dup
4: sipush 1024
7: invokespecial #3 // Method java/lang/Integer."":(I)V
10: astore_1
11: sipush 1024
14: istore_2
15: aload_1
16: invokevirtual #4 // Method java/lang/Integer.intValue:()I
19: iload_2
20: if_icmpne 27
23: iconst_1
24: goto 28
27: iconst_0
28: istore_3
29: getstatic #5 // Field java/lang/System.out:Ljava/io/PrintStream;
32: iload_3
33: invokevirtual #6 // Method java/io/PrintStream.println:(Z)V
36: return
}
通过过3.2.1和3.2.2的例子是支持基础类型的数据和对象的引用地址都是栈上的数据 这个结论的。但是3.2.3这个例子需要反编译分析,通过反编译可以看到第16行指令就是做一个拆箱操作,其实就是基本类型(int)和对象类型(Integer)做比较时会有一个对象类型拆箱的一个过程,然后两者都已基本类型进行比较了。
上述展示了equals方法在Object中实现,内部就是一个 == 运算符,又因为只有引用类型才有 equals 方法,所以在对于所有未重写equals方法的类的对象调用equals方法,都是比较其所在的堆内存地址(栈上存的值)是否一致。
但是Java中很多类都重写了equals方法,所以对于重写了equals方法的类,其对象调用equals方法时都需要根据其内部实现而定。
public boolean equals(Object anObject) {
if (this == anObject) {
return true;
}
if (anObject instanceof String) {
String anotherString = (String)anObject;
int n = value.length;
if (n == anotherString.value.length) {
char v1[] = value;
char v2[] = anotherString.value;
int i = 0;
while (n-- != 0) {
if (v1[i] != v2[i])
return false;
i++;
}
return true;
}
}
return false;
}
代码
public void stringDataTest() {
String str1 = new String("hello");
String str2 = new String("hello");
String str3 = str1;
String str4 = "hello";
System.out.println(str1.equals(str2));
System.out.println(str1.equals(str3));
System.out.println(str1.equals(str4));
System.out.println(str1 == str2);
System.out.println(str1 == str4);
}
结果
true
true
true
false
false
public boolean equals(Object obj) {
if (obj instanceof Integer) {
return value == ((Integer)obj).intValue();
}
return false;
}
public void integerDataTest() {
Integer integer1 = new Integer(1024);
Integer integer2 = new Integer(1024);
Integer integer3 = integer1;
Integer integer4 = 1024;
System.out.println(integer1.equals(integer2));
System.out.println(integer1.equals(integer3));
System.out.println(integer1.equals(integer4));
}
结果
true
true
true
public boolean equals(Object obj) {
if (obj instanceof Character) {
return value == ((Character)obj).charValue();
}
return false;
}
public boolean equals(Object obj) {
if (obj instanceof Boolean) {
return value == ((Boolean)obj).booleanValue();
}
return false;
}
public boolean equals(Object obj) {
if (obj instanceof Short) {
return value == ((Short)obj).shortValue();
}
return false;
}
public boolean equals(Object obj) {
if (obj instanceof Byte) {
return value == ((Byte)obj).byteValue();
}
return false;
}
public boolean equals(Object obj) {
if (obj instanceof Long) {
return value == ((Long)obj).longValue();
}
return false;
}
public boolean equals(Object obj) {
return (obj instanceof Float)
&& (floatToIntBits(((Float)obj).value) == floatToIntBits(value));
}
public boolean equals(Object obj) {
return (obj instanceof Double)
&& (doubleToLongBits(((Double)obj).value) ==
doubleToLongBits(value));
}
所有的包装类型都有一个初始缓存,这里Integer为例子。
public void integerDataTest() {
Integer integer1 = new Integer(10);
Integer integer2 = new Integer(10);
Integer integer3 = 10;
Integer integer4 = 10;
Integer integer5 = 128;
Integer integer6 = 128;
System.out.println(integer1 == integer2);
System.out.println(integer1.equals(integer2));
System.out.println(integer3 == integer4);
System.out.println(integer5 == integer6);
}
false
true
true
false
Integer自动包装类生成对象源码
public static Integer valueOf(int i) {
if (i >= IntegerCache.low && i <= IntegerCache.high)
return IntegerCache.cache[i + (-IntegerCache.low)];
return new Integer(i);
}
Integer内部一个静态内部类IntegerCache。
private static class IntegerCache {
static final int low = -128;
static final int high;
static final Integer cache[];
static {
// high value may be configured by property
int h = 127;
String integerCacheHighPropValue =
sun.misc.VM.getSavedProperty("java.lang.Integer.IntegerCache.high");
if (integerCacheHighPropValue != null) {
try {
int i = parseInt(integerCacheHighPropValue);
i = Math.max(i, 127);
// Maximum array size is Integer.MAX_VALUE
h = Math.min(i, Integer.MAX_VALUE - (-low) -1);
} catch( NumberFormatException nfe) {
// If the property cannot be parsed into an int, ignore it.
}
}
high = h;
cache = new Integer[(high - low) + 1];
int j = low;
for(int k = 0; k < cache.length; k++)
cache[k] = new Integer(j++);
// range [-128, 127] must be interned (JLS7 5.1.7)
assert IntegerCache.high >= 127;
}
private IntegerCache() {}
}