Java - StrictMath copySign(double) 方法



描述

Java StrictMath copySign(double magnitude, double sign) 方法返回第一个浮点数参数,并带有第二个浮点数参数的符号。

声明

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

public static double copySign(double magnitude, double sign)

参数

  • magnitude − 提供结果大小的参数

  • sign − 提供结果符号的参数

返回值

此方法返回一个值,该值的大小为 magnitude,符号为 sign。

异常

获取第一个双精度参数复制第二个正双精度参数的符号示例

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

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 125.9;
      double y = -0.4873;
   
      // print a double with the magnitude of x and the sign of y
      System.out.println("StrictMath.copySign(" + x + "," + y + ")=" + StrictMath.copySign(x, y));
   }
}

输出

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

StrictMath.copySign(125.9, -0.4873)=-125.9

获取第一个双精度参数复制第二个负双精度参数的符号示例

以下示例显示了 StrictMath copySign() 方法在交换参数时的另一种用法。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 125.9;
      double y = -0.4873;
   
      // print a double with the magnitude of y and the sign of x
      System.out.println("StrictMath.copySign(" + y + "," + x + ")=" + StrictMath.copySign(y, x));
   }
}

输出

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

StrictMath.copySign(-0.4873, 125.9)=0.4873

获取零复制第二个双精度参数的符号示例

以下示例显示了 StrictMath copySign() 方法对零值的用法。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 0;
      double y = -0.4873;
   
      // print a double with the magnitude of x and the sign of y
      System.out.println("StrictMath.copySign(" + x + "," + y + ")=" + StrictMath.copySign(x, y));
   }
}

输出

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

StrictMath.copySign(0.0,-0.4873)=-0.0
java_lang_strictmath.htm
广告