java中用equals比较两个内容相同的字符数组结果会怎么样

代码如下:Stringstr="hello";;charc[]={'h','e','l','l','o'};charch[]=str.toCharArray();if(c... 代码如下:
String str = "hello";;
char c[] = {'h','e','l','l','o'};
char ch[]= str.toCharArray();
if(ch.equals(c))
System.out.println("true");
else
System.out.println("false");
打印输出的结果为什么是false?
如果是String类型的两个变量比较,例如:
String s = "hello";
String t = new String("hello");
那么s.equals(t) = true;因为String的比较,equals比较的是内容;==比较的是地址。
可是对于上述的两个字符数组的比较,ch.equals(c),是比较地址还是内容呢,还是先比较地址后比较内容? 请各位高手帮忙解答!
展开
 我来答
Ja初学者va
推荐于2016-02-27 · TA获得超过212个赞
知道小有建树答主
回答量:115
采纳率:0%
帮助的人:118万
展开全部
********************************************
你在数组上调用函数equals,比较的是c和ch的地址
改成
if(Arrays.equals(ch,c));
就可以比较c和ch的内容了
********************************************

java.sun.com上说,
The equals method for class Object implements the most discriminating possible equivalence relation on objects; that is, for any non-null reference values x and y, this method returns true if and only if x and y refer to the same object (x == y has the value true).
It doesn't perform an intelligent comparison for most classes unless the class overrides it. It has been defined in a meaningful way for most Java core classes. If it's not defined for a (user) class, it behaves the same as ==.

"If it's not defined for a (user) class, it behaves the same as =="由于你没有重写equals方法,所以它比较的是数组的地址,相当于是==。

另外,有问题可以去sun.java.com上找每个class的说明,也可以装个Netbeans java版(开源的),Netbeans 直接提供每个方法的说明
望采纳
tonylinzhen
2010-07-27 · TA获得超过1368个赞
知道小有建树答主
回答量:997
采纳率:50%
帮助的人:387万
展开全部
对于我之前的回答做修正
我做了测试 证实了数组没有重写object的equals方法

String str = "hello";

char ch[]= str.toCharArray();

char cch[]=str.toCharArray();

System.out.println(cch.toString());
System.out.println(ch.toString());
if(ch.equals(cch))
System.out.println("true");
else
System.out.println("false");

上面的结果也是false 即使是从相同的String对象获取的数组 因为地址不同结果为false
char[] 数组没有重写Object的equals方法,所以它比较的是引用地址,这里就返回false了
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
vortexchoo
2015-10-08 · TA获得超过543个赞
知道小有建树答主
回答量:501
采纳率:40%
帮助的人:85.9万
展开全部
应该是不相等的。两个数组,其实就是在内存的堆中创建了两个对象。两个对象是不相等的。他们的内存地址不一致,hashcode也不一致。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
木兮汉语
2010-07-24
知道答主
回答量:29
采纳率:0%
帮助的人:11.2万
展开全部
你调用的equals方法是Object里面的方法,当两个对象的地址相同时才会返回true,而显然字符数组c和ch的地址不同,所以返回false。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
miniapp16e43ddfde28
2010-07-25 · TA获得超过639个赞
知道小有建树答主
回答量:737
采纳率:0%
帮助的人:523万
展开全部
是false
因为是对象的比较 应该先比较对象的地址 然后 在比较对象的属性 数组也是对象哦
if(c==ch) return true;
else if(c[i].equals(ch[i])) return true;
else return false;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(4)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式