在Android中,判斷兩個字符串是否相等可以使用equals()方法或者equalsIgnoreCase()方法。
String str1 = "hello";
String str2 = "world";
if(str1.equals(str2)){
// 字符串相等
}else{
// 字符串不相等
}
String str1 = "Hello";
String str2 = "hello";
if(str1.equalsIgnoreCase(str2)){
// 字符串相等
}else{
// 字符串不相等
}
需要注意的是,對于空字符串或者null值的比較,最好先進行判空處理,以避免出現空指針異常。
String str1 = "hello";
String str2 = null;
if(str1 != null && str1.equals(str2)){
// 字符串相等
}else{
// 字符串不相等
}