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),是比较地址还是内容呢,还是先比较地址后比较内容? 请各位高手帮忙解答! 展开
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),是比较地址还是内容呢,还是先比较地址后比较内容? 请各位高手帮忙解答! 展开
6个回答
展开全部
********************************************
你在数组上调用函数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 直接提供每个方法的说明
望采纳
你在数组上调用函数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 直接提供每个方法的说明
望采纳
展开全部
对于我之前的回答做修正
我做了测试 证实了数组没有重写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了
我做了测试 证实了数组没有重写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了
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
应该是不相等的。两个数组,其实就是在内存的堆中创建了两个对象。两个对象是不相等的。他们的内存地址不一致,hashcode也不一致。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你调用的equals方法是Object里面的方法,当两个对象的地址相同时才会返回true,而显然字符数组c和ch的地址不同,所以返回false。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是false
因为是对象的比较 应该先比较对象的地址 然后 在比较对象的属性 数组也是对象哦
if(c==ch) return true;
else if(c[i].equals(ch[i])) return true;
else return false;
因为是对象的比较 应该先比较对象的地址 然后 在比较对象的属性 数组也是对象哦
if(c==ch) return true;
else if(c[i].equals(ch[i])) return true;
else return false;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询