Java - StrictMath copySign(float) 方法



描述

Java StrictMath copySign(float magnitude, float sign) 方法返回第一个浮点数参数,其符号与第二个浮点数参数的符号相同。

声明

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

public static float copySign(float magnitude, float sign)

参数

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

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

返回值

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

异常

获取第一个浮点数参数,复制第二个正浮点数参数的符号示例

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

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get two float numbers
      float x = 125.9f;
      float y = -0.4873f;
   
      // print a float 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 float numbers
      float x = 125.9f;
      float y = -0.4873f;
   
      // print a float 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 float numbers
      float x = 0f;
      float y = -0.4873f;
   
      // print a float 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
广告