Java.lang.Integer 类

java.lang.Integer.divideUnsigned() 方法返回第一个参数除以第二个参数的无符号商,其中每个参数,结果被解释为无符号值。

语法

public static int divideUnsigned(int dividend,
                                 int divisor)

参数

x 指定要除的值。
y 指定除法的值。

返回值

返回第一个参数除以第二个参数的无符号商。

异常

不适用。

示例:

在下面的示例中,java.lang.Integer.divideUnsigned() 方法返回除给定参数的无符号商。

import java.lang.*;

public class MyClass {
  public static void main(String[] args) {
    
    //创建int值
    int x = 5;
    int y = 10;

    //打印x除以y的商
    System.out.println("quotient of x/y: " + Integer.divideUnsigned(x,y));

    //打印y除以x的商
    System.out.println("quotient of y/x: " + Integer.divideUnsigned(y,x)); 
  }
}

上述代码的输出将是:

quotient of x/y: 0
quotient of y/x: 2