java String 的比较

先看一段代码:

 1 public class StringCom {
 2 
 3     public static void main(String[] args) {
 4         String a = "hello";
 5         String b = "hello";
 6         String c = new String("hello");
 7         char d[] = {'h','e','l','l','o'};
 8         
 9         System.out.println(a==b);  //true
10 
11         System.out.println(a==c);  //false
12  
13         System.out.println(a==d);  // Incompatible operand types String and char[]
14 
15         System.out.println(a.equals(d)); //false , 提示:Unlikely argument type for equals(): char[] seems to be unrelated to String
16         
17         System.out.println(a.equals(new String("hello")));  //true
18 
19     }
20 
21 }

遇到一个问题,就像上面的5个比较,问哪个会输出false,至于第13行的那个,在Eclipse里直接报错 “Incompatible operand types String and char[]  ”  , 所以意思是,也不会输出false?还没运行就报错了。

还有就是看到一个讨论:https://www.nowcoder.com/questionTerminal/e426ba1e900c4a7ea000e9a029653aae?from=relative 

里面有关于 ‘==’和‘equals’的讨论,有些回复看得我懵逼了,推荐一篇博客:https://www.cnblogs.com/zhxhdean/archive/2011/03/25/1995431.html

还有知乎的一个回答:https://www.zhihu.com/question/26872848

原文地址:https://www.cnblogs.com/Guhongying/p/11145111.html