Java Math类static int round(float f)与示例

数学类静态int轮(浮点f)

  • 此方法在java.lang包中可用。

  • 此方法用于将最接近的int值返回给定参数,并通过加1/2将其舍入为整数并将结果从float转换为int。

  • 这是一个静态方法,也可以使用类名进行访问。

  • 此方法的返回类型为int,它返回一个整数,通过将给定参数的1/2加到int上,该值将从float-floating转换为int 。

  • 在此方法中,我们仅传递一个表示浮点数的参数。

  • 如果小数点后给定参数的值大于4,则在返回小数点前将值加1;否则,如果小数点后给定参数的值小于或等于4,则返回小数点前的相同值。

  • 此方法不会引发任何异常。

语法:

    public static int round(float f){
    }

参数: f-一个浮点值,其最接近要找到的整数值。

注意:

  • 如果传递“ NaN”(非数字),则返回0。

  • 如果传递负无穷大,它将返回“ Integer.MIN_VALUE”。

  • 如果我们传递正无穷大,它将返回“ Integer.MAX_VALUE”。

  • 如果传递的值小于或等于“ Integer.MIN_VALUE”,则返回“ Integer.MIN_VALUE”。

  • 如果传递的值大于或等于“ Integer.MAX_VALUE”,则返回“ Integer.MAX_VALUE”。

返回值:

此方法的返回类型为int,它返回一个最接近给定参数整数值的整数值。

Java程序演示round(float f)方法的示例

//Java程序演示的例子 
//数学类的round(float f)方法。

public class RintMethod {
    public static void main(String[] args) {
        //声明变量
        float f1 = -1.0f / 0.0f;
        float f2 = 1.0f / 0.0f;
        float f3 = 1234.56f;
        float f4 = 1234.42f;

        //在这里,我们将得到(Integer.MIN_VALUE),我们 
        //传递参数,其值为(-Infinity)
        System.out.println("Math.round (f1): " + Math.round(f1));

        //在这里,我们将得到(Integer.MAX_VALUE),并且我们 
        //传递参数,其值为(Infinity)
        System.out.println("Math.round (f2): " + Math.round(f2));

        //在这里,我们将得到(1235)并且我们 
        //传递参数,其值为(1234.56)
        System.out.println("Math.round (f3): " + Math.round(f3));

        //在这里,我们将得到(1234)并且我们 
        //传递参数,其值为(1234.12)
        System.out.println("Math.round (f4): " + Math.round(f4));
    }
}

输出结果

E:\Programs>javac RintMethod.java

E:\Programs>java RintMethod
Math.round (f1): -2147483648
Math.round (f2): 2147483647
Math.round (f3): 1235
Math.round (f4): 1234