Main.java:138: error: incompatible types: boolean cannot be converted to String
if(formatString(positions[index].equalsIgnoreCase(formatString(position))))
^
Main.java:160: error: incompatible types: boolean cannot be converted to String
if(formatString(players[index].equalsIgnoreCase(formatString(player))))
以上是错误。我想知道 bool(boolean) 值在哪里更改为String。
formatString()是一个方法
position []是一个字符串数组
/**
* Method that finds the index of player by using the position
*
* @param position The position of the baseball player
* @return The index of the player at a certain position
*/
public int findIndex(String position)
{
int index = 0;
while(index < positions.length)
{
if(formatString(positions[index].equalsIgnoreCase(formatString(position))))
{
return index;
}
else
{
return -1;
}
}
}
/**
* Method that finds the player position by finding the name
*
* @param player The namee of the player
* @return The position that matches the players name
*/
public String findPlayerPosition(String player)
{
int index = 0;
while(index < players.length)
{
if(formatString(players[index].equalsIgnoreCase(formatString(player))))
{
return positions[index];
}
else
{
return "NONE";
}
}
}
formatString()方法
public String formatString(String oldString)
{
return (oldString.equals("") ? oldString : (oldString.trim()).toUpperCase());
}
formatString()方法对通过参数传递的字符串执行trim()和uppercase()。
最佳答案
我认为在if
语句的条件下,您的问题就在这里:
if(formatString(positions[index].equalsIgnoreCase(formatString(position)))
让我们稍微扩展一下:
final boolean equivalent = positions[index].equalsIgnoreCase(formatString(position));
final boolean condition = formatString(equivalent);
if (condition) {
// ...
}
现在,
position
是String
,formatString
接受并返回String
,positions[index]
是String
,equalsIgnoreCase
比较String
。因此,第一行很好。但是,第二行...在扩展形式中,很明显,您正在尝试使用
formatString
调用boolean
。我们知道它应该接受String
,所以这就是正在报告的错误。但是,还有另一个问题-formatString
返回String
,但是由于您将其用作if
语句的条件,因此它必须是boolean
。我认为将外部调用放在
formatString
上可以解决您的问题。顺便说一句,因为“” .trim()。equals(“”),所以formatString
内部的三元运算符是不必要的。嗯,由于您使用的是equalsIgnoreCase
,所以toUpperCase
中的formatString
也很多余,所以为什么不if (positions[index].equalsIgnoreCase(position))
?
更新:最初未提供
formatString
。现在,此答案已被重写。