为什么我会返回-1
?确保名称位于stadiumSeats[i][j]
。
`public int searchForGuest(final String name){
for(int i=0; i<stadiumSeats.length; i++){
for(int j=0; j<stadiumSeats.length; j++){
if(stadiumSeats[i][j] == name){
return i;
}
}
}
return -1;
}`
答案 0 :(得分:0)
要比较字符串,请使用等于
的函数