String t ="hello";
char c[]={'h','e','l','l','o'};
System.out.println(t.equals(c));
结果为什么是false
char c[]={'h','e','l','l','o'};
System.out.println(t.equals(c));
结果为什么是false