Java - StrictMath IEEEremainder(double x, double y) 方法



描述

Java StrictMath IEEEremainder(double f1, double f2) 方法根据 IEEE 754 标准返回两个参数的余数运算。余数值在数学上等于 f1 - f2 x n,其中 n 是商 f1/f2 的精确数学值的最近整数,如果两个数学整数与 f1/f2 的距离相等,则 n 是偶数。如果余数为零,则其符号与第一个参数的符号相同。特殊情况 -

  • 如果任一参数为 NaN,或第一个参数为无限大,或第二个参数为正零或负零,则结果为 NaN。

  • 如果第一个参数是有限的,而第二个参数是无限的,则结果与第一个参数相同。

声明

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

public static double IEEEremainder(double f1, double f2)

参数

  • f1 - 被除数。

  • f2 - 除数。

返回值

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

异常

根据 IEEE 754 标准获取两个数字的余数示例

以下示例显示了 StrictMath IEEEremainder() 方法的使用。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 60984.1;
      double y = -497.99;
   
      // call IEEEremainder and print the result
      System.out.println("StrictMath.IEEEremainder(" + x + "," + y + ")=" + StrictMath.IEEEremainder(x, y));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 -

StrictMath.IEEEremainder(60984.1,-497.99)=229.31999999999744

根据 IEEE 754 标准获取两个零数字的余数示例

以下示例显示了 StrictMath IEEEremainder() 方法在零值情况下的使用。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 0.0;
      double y = -0.0;
   
      // call IEEEremainder and print the result
      System.out.println("StrictMath.IEEEremainder(" + x + "," + y + ")=" + StrictMath.IEEEremainder(x, y));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 -

StrictMath.IEEEremainder(0.0,-0.0)=NaN

根据 IEEE 754 标准获取两个 1 数字的余数示例

以下示例显示了 StrictMath IEEEremainder() 方法在 1 值情况下的使用。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 1.0;
      double y = -1.0;
   
      // call hypot and print the result
      System.out.println("StrictMath.IEEEremainder(" + x + "," + y + ")=" + StrictMath.IEEEremainder(x, y));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 -

StrictMath.IEEEremainder(1.0,-1.0)=0.0
java_lang_strictmath.htm
广告