Java StrictMath rint()方法
java.lang.StrictMath.rint() 方法返回最接近参数的double值,并等于某个整数。如果两个double值是整数都同样接近参数的值,结果是整数值是偶数。它包括以下情况:
- 如果参数值已经等于某个整数,那么结果与参数一样。
- 如果参数为NaN或无穷大,正零或负零,那么结果与参数一样。
1 语法
public static double rint(double a)
2 参数
a : 这是所使用的值。
3 返回值
此方法返回最接近的浮点值到等于某个整数。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Enum compareTo()方法
*/
import java.lang.*;
public class StrictMathDemo {
public static void main(String[] args) {
double d1 = 6.1 , d2 = 57.5 , d3 = 9.7;
/* returns the double value that is close to the argument
and is equal to a mathematical integer. */
double rintValue = StrictMath.rint(d1);
System.out.println("integer value closest to " + d1 + " = " + rintValue);
rintValue = StrictMath.rint(d2);
System.out.println("integer value closest to " + d2 + " = " + rintValue);
rintValue = StrictMath.rint(d3);
System.out.println("integer value closest to " + d3 + " = " + rintValue);
}
}
输出结果为:
integer value closest to 6.1 = 6.0
integer value closest to 57.5 = 58.0
integer value closest to 9.7 = 10.0
热门文章
优秀文章