String (首字母大写)是引用类型

string (全部小写) 是值类型

 

String a="a";

String b="a";

 

a == b;//fales 因为是不同的引用

a.equals(b);//true 因为比较的不是引用,是比较的值,所以相等

相关文章: