我需要編寫一個方法來搜索特定成員的俱樂部會員的對象數組,並且如果找到該成員則返回true。這是我現在擁有的。如何在對象數組中搜索特定的字符串?
public boolean isMember (String name){
boolean found = false;
int arrayIndex = 0;
while(arrayIndex < members.length && !found){
if(members[arrayIndex] == name){
found = true;
}
arrayIndex++;
}
return found;
}
不要使用''==來比較字符串值。使用'equals()'。 –