round()
函數在 Java 中主要用于四舍五入操作。以下是一些常見的應用場景:
round()
函數進行四舍五入操作。例如,計算利息、稅收或者商品價格等。double price = 123.456;
long roundedPrice = Math.round(price * 100); // 四舍五入到最接近的分,結果為 12346
double averageScore = 89.654;
int roundedAverageScore = (int) Math.round(averageScore); // 四舍五入到最接近的整數,結果為 89
double xCoordinate = 100.567;
int roundedXCoordinate = (int) Math.round(xCoordinate); // 四舍五入到最接近的整數像素值,結果為 101
double a = 0.1 + 0.2;
double b = 0.3;
boolean isEqual = Math.abs(a - b) < 0.0001; // 四舍五入到 0.0001 以內,判斷兩個數是否相等
需要注意的是,Math.round()
函數返回的是 long
類型的整數,如果需要將結果轉換為 int
類型,可以使用強制類型轉換 (int)
。同時,round()
函數也可以用于負數的四舍五入操作。