提问一个java的问题:是有关equals()和==的,问题如下
publicstaticvoidmain(String[]args){Integera=newInteger(1);Integerb=newInteger(1);intc...
public static void main(String[] args) {
Integer a=new Integer(1);
Integer b=new Integer(1);
int c=1;
Long d=new Long(1);
System.out.println(a.equals(b));
System.out.println(a.equals(c));
System.out.println(b.equals(c));
System.out.println(a.equals(d));
System.out.println("-----------------------");
System.out.println(a==b);
System.out.println(a==c);
System.out.println(b==c);
}
运行结果是
true
true
true
false
-----------------------
false
true
true
这就怪了,a==c为true,b==c为true,a==b怎么就为false了呢?还有为什么a.equals(d)为false呢? 展开
Integer a=new Integer(1);
Integer b=new Integer(1);
int c=1;
Long d=new Long(1);
System.out.println(a.equals(b));
System.out.println(a.equals(c));
System.out.println(b.equals(c));
System.out.println(a.equals(d));
System.out.println("-----------------------");
System.out.println(a==b);
System.out.println(a==c);
System.out.println(b==c);
}
运行结果是
true
true
true
false
-----------------------
false
true
true
这就怪了,a==c为true,b==c为true,a==b怎么就为false了呢?还有为什么a.equals(d)为false呢? 展开
展开全部
java中“==”比较的是物理地址,equals比较的是值
int c=1其实是c的指针指向了值为1的物理地址。
java中new关键字就是开辟一个新的地址用来存储。
Integer a=new Integer(1)就是开辟一个地址来存储1,所以A和B的物理地址不同a==b就是false
至于a.equals(d)为什么为false,我可已给你看下equals的api
equals public boolean equals(Object obj)
Compares this object to the specified object. The result is true if and only if the argument is not null and is a Long object that contains the same long value as this object.
也就是说long型的只能和long型的做equals比较
int c=1其实是c的指针指向了值为1的物理地址。
java中new关键字就是开辟一个新的地址用来存储。
Integer a=new Integer(1)就是开辟一个地址来存储1,所以A和B的物理地址不同a==b就是false
至于a.equals(d)为什么为false,我可已给你看下equals的api
equals public boolean equals(Object obj)
Compares this object to the specified object. The result is true if and only if the argument is not null and is a Long object that contains the same long value as this object.
也就是说long型的只能和long型的做equals比较
展开全部
1 a==b 比较的是引用值,new的不同对象,引用值当然不同。
2 数值类型的变量,不建议用equals比较,不过想Interger,Long等类型可以比较。
a跟d比较为false是对的,想true的话,你需要重写Integer类的hashcode方法和equals方法,但是Integer是java自带的类型,所以,以后a和d的比较,直接用=比较就行啦。
2 数值类型的变量,不建议用equals比较,不过想Interger,Long等类型可以比较。
a跟d比较为false是对的,想true的话,你需要重写Integer类的hashcode方法和equals方法,但是Integer是java自带的类型,所以,以后a和d的比较,直接用=比较就行啦。
来自:求助得到的回答
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Integer b=new Integer(1)是对象 两个对象不相同 ==是值相等
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
== 是比较的地址 equals 是比较值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如果 你了解多态!我建议你看看 equals()是Object对象 而a属于Integer类 看看Integer类是否重写了equals()方法吗? 看看Number重写的equals()方法吗? 没有!会执行Object中的equals()方法,你会发现 其实比较的是hashcode值,那么a的hashcode 会等于 1吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一个是值,一个是引用;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
晕,你这里犯好几个错。
你类型都不相同了,还equals什么啊。int即转换为Integer,这个不用说了吧。因此abc相同。你再去object这个类里看看,它有个equals方法。Integer和Long作为对象,必定继承自object,因此各自实现了equals方法。此时,除非你重写Long或Integer中的equals方法,否则这两者必定不同。
然后,你去网上搜下Long和int的区别,大把。
你类型都不相同了,还equals什么啊。int即转换为Integer,这个不用说了吧。因此abc相同。你再去object这个类里看看,它有个equals方法。Integer和Long作为对象,必定继承自object,因此各自实现了equals方法。此时,除非你重写Long或Integer中的equals方法,否则这两者必定不同。
然后,你去网上搜下Long和int的区别,大把。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询