当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Math.floorDiv()用法及代码示例


java.lang.Math.floorDiv() 用于查找小于或等于代数商的最大整数值。此方法首先将第一个参数除以第二个参数,然后对结果执行 floor() 运算,并返回小于或等于商的整数。

用法

public static int floorDiv(int x, int y)
public static long floorDiv(long x, int y)
public static long floorDiv(long x, long y)

参数

x = the dividend 
y = the divisor

返回

This method returns the largest value that is less than or equal to the algebraic quotient.
  • 如果第一个参数是 int 或 long 值,第二个参数是 -1,则此方法将返回第一个参数作为输出。
  • 如果第二个参数为零,则此方法将抛出 ArithmeticException。

例子1

public class FloorDivExample1
{
    public static void main(String[] args) 
    {
        int x = 25;
        int y= 3;
        // 25/3 value is 8.33 so floor(8.33) = 8 
        System.out.println(Math.floorDiv(x, y));
    }
}

输出:

8

例子2

public class FloorDivExample2
{
    public static void main(String[] args) 
    {
        int x = -25;
        int y= 3;
        // -25/3 value is -8.333 so floor(-8.333) = -9 
        System.out.println(Math.floorDiv(x, y));
    }
}

输出:

-9

例子3

public class FloorDivExample3
{
    public static void main(String[] args) 
    {
        long x = 6754883;
        int y = 0;
        // Second argument is zero, Output is Airthmetic Exception 
        System.out.println(Math.floorDiv(x, y));
    }
}

输出:

Runtime Error:
Exception in thread "main" java.lang.ArithmeticException:/ by zero
	at java.lang.Math.floorDiv(Math.java:1052)
	at floorDivExample1.main(floorDivExample1.java:8)

示例 4

public class FloorDivExample4
{
    public static void main(String[] args) 
    {
        long x = 2148;
        long y= -1;
        // Input positive value and -1, Output first argument 
        System.out.println(Math.floorDiv(x, y));
    }
}

输出:

-2148






相关用法


注:本文由纯净天空筛选整理自 Java Math.floorDiv() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。