JAVA中字符串的比较

比较字符串内容是否相同,使用.equals方法。
eg:
String s1=“name”;
String s2=“name”;
则s1.equals(s2)=true。
如果使用==去比比较则是错误的做法。

你可能感兴趣的:(Android)