克服整数除法限制
在编程中,两个整数相除通常会得到另一个整数,并截断任何余数。当您需要浮点结果时,这会变得不方便。让我们探讨如何修改代码以确保两个整数相除产生浮点数。
原始代码:
class CalcV { float v; float calcV(int s, int t) { v = s / t; return v; } //end calcV } public class PassObject { public static void main (String[] args ) { int distance; distance = 4; int t; t = 3; float outV; CalcV v = new CalcV(); outV = v.calcV(distance, t); System.out.println("velocity : " + outV); } //end main }//end class
解决方案:
要获得浮点结果,请在执行之前将其中一个操作数转换为浮点数除法:
v = (float)s / t;
强制转换的优先级高于除法,确保首先执行强制转换。另一个操作数会被编译器自动转换为浮点数,因为混合类型运算会导致浮点运算。
更新的代码:
class CalcV { float v; float calcV(int s, int t) { v = (float)s / t; return v; } //end calcV }
以上是如何确保 Java 中的整数除法产生浮点结果?的详细内容。更多信息请关注PHP中文网其他相关文章!