Netbeans * 7.4 *告诉我此行“不必要的强制转换”:
int points; // EDIT *********************
String word;
appendOutput(word +
(points > 0
? "\t" + round((float)points/word.length(),2)
: ""));
但是,如果我删除(浮动),则输出将被截断(应视情况而定)为小于points / word.length的最大整数.
那么Netbeans怎么了?如果要将正确的输出精确到百分之一,则必须忽略其删除(浮动)的建议.
还是我做错了/不好吃的东西,或者只是错过了什么?
*编辑*
嘿…忘了我写了自己的舍入方法:
public static double round(float x, int n){
return Math.floor((0 + Math.pow(10, n)*x + 0.5)) / Math.pow(10, n);
}
* MCVE *
public class JavaApplication66 {
public static void main(String[] args) {
int points = 23; // EDIT *********************
String word = "FOO";
System.out.println(word +
(points > 0
? "\t" + round((float)points/word.length(),2)
: ""));
}
public static double round(float x, int n){
return Math.floor((0 + Math.pow(10, n)*x + 0.5)) / Math.pow(10, n);
}
}
**编辑**刚刚添加(浮动)到MCVE …笑…
解决方法:
根据我们的了解,我认为您没有丢失任何东西.它看起来像Netbeans中的错误.
由于(float)绑定到点,而不绑定到除法结果,因此强制转换会更改程序的语义,因此不能合理地描述为“不必要”.
MCVE将有助于确认这一点(并且在提交错误报告时将很有用).