java.lang.Math.round() 用於將十進製數舍入到最接近的值。此方法用於返回最接近參數的 long,連接數四舍五入為正無窮大。
用法
public static int round(float x)
public static long round(double x)
參數
x= It is a floating-point value to be rounded to an integer
返回
This method returns the value of the argument rounded to the nearest int value.
- 如果參數是正數或負數,此方法將返回最接近的值。
- 如果參數不是數字 (NaN),則此方法將返回零。
- 如果參數為正 Infinity 或任何小於或等於 Integer.MIN_VALUE 的值,則此方法將返回 Integer.MIN_VALUE。
- 如果參數為負 Infinity 或任何小於或等於 Long.MAX_VALUE 的值,則此方法將返回 Long.MAX_VALUE。
例子1
public class RoundExample1
{
public static void main(String[] args)
{
double x = 79.52;
// find the closest int for the double
System.out.println(Math.round(x));
}
}
輸出:
80
例子2
public class RoundExample2
{
public static void main(String[] args)
{
double x = -83.76;
// find the closest int for the double
System.out.println(Math.round(x));
}
}
輸出:
-84
例子3
public class RoundExample3
{
public static void main(String[] args)
{
double negativeInfinity = Double.NEGATIVE_INFINITY;
// Input negative Infinity, Output Long.MAX_VALUE
System.out.println(Math.round(negativeInfinity));
}
}
輸出:
-9223372036854775808
示例 4
public class RoundExample4
{
public static void main(String[] args)
{
double x = 1.0/0;
// Input positive Infinity, Output Integer.MAX_VALUE
System.out.println(Math.round(x));
}
}
輸出:
9223372036854775807
例 5
public class RoundExample5
{
public static void main(String[] args)
{
double x = 0.0/0;
// Input NaN, Output Zero
System.out.println(Math.round(x));
}
}
輸出:
0
相關用法
- Java Math.rint()用法及代碼示例
- Java Math.random()用法及代碼示例
- Java Math.multiplyExact()用法及代碼示例
- Java Math.nextUp()用法及代碼示例
- Java Math.tan()用法及代碼示例
- Java Math.asin()用法及代碼示例
- Java Math.atan()用法及代碼示例
- Java Math.nextAfter()用法及代碼示例
- Java Math.exp()用法及代碼示例
- Java Math.tanh()用法及代碼示例
- Java Math.toDegrees()用法及代碼示例
- Java Math.getExponent()用法及代碼示例
- Java Math.toIntExact()用法及代碼示例
- Java Math.IEEEremainder()用法及代碼示例
- Java Math.sqrt()用法及代碼示例
- Java Math.incrementExact()用法及代碼示例
- Java Math.min()用法及代碼示例
- Java Math.log()用法及代碼示例
- Java Math.log1p()用法及代碼示例
- Java Math.signum()用法及代碼示例
注:本文由純淨天空篩選整理自 Java Math.round() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。