不废话,来个题!int x = 5;
Integer x1 = x;
Integer x2 = x;
int x3 = new Integer(5);//true
System.out.println(x1.equals(x));//true
System.out.println(x1==x);//true
System.out.println(x2.equals(x1));//true
System.out.println(x2==x1);//true
System.out.println(x2==x3);//true
System.out.println(x2.equals(x3));//true
equals方法是用比较对象里的内容;
==是用来比较对象的地址值,但是jdk1.5的新特性中,当数值在byte范围内容,对于新特性,如果该数值已经存在,则不会在开辟新的空间。
把上面题是数字5的地方改为128后,答案是,,,
true
true
true
true
false//由于新特性
true//x3是基本数据类型
true//x3是基本数据类型
|
|