Java.lang.StrictMath.IEEEremainder() 方法

描述

java.lang.StrictMath.IEEEremainder() 方法计算两个参数的余数运算。

余数在数学上等于 f1 - f2 × n,其中 n 是最接近商 f1/f2 的精确数学值的数学整数,如果两个数学整数同样接近 f1/f2,则 n 是偶数。

如果余数为零,则其符号与第一个参数的符号相同。它包括一些情况 −

  • 如果任一参数为 NaN,或第一个参数为无穷大,或第二个参数为正零或负零,则结果为 NaN。
  • 如果第一个参数是有限的,第二个参数是无限的,那么结果与第一个参数相同。

声明

以下是 java.lang.StrictMath.IEEEremainder() 方法的声明。

public static double IEEEremainder(double f1, double f2)

参数

  • f1 − This is the dividend.

  • f2 − This is the divisor.


返回值

此方法返回 f1 除以 f2 的余数。


异常

NA


示例

下面的例子展示了 java.lang.StrictMath.IEEEremainder() 方法的使用。

package com.tutorialspoint;

import java.lang.*;

public class StrictMathDemo {

   public static void main(String[] args) {

      double d1 = 102.20d , d2 = 32.29d;
   
      // returns the remainder
      double retval = StrictMath.IEEEremainder(d1, d2);
      System.out.println(" remainder = " + retval);

      /* if the first argument is finite and the second argument is infinite, 
         then the result is the same as the first argument */
      d1 = 30.12d;
      d2 = (1.0)/(0.0);
      retval = StrictMath.IEEEremainder(d1, d2);
      System.out.println(" remainder = " + retval);
   }
}

让我们编译并运行上面的程序,这将产生下面的结果 −

remainder = 5.330000000000005
remainder = 30.12