Java - Math copySign(float) 方法



描述

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

声明

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

public static float copySign(float magnitude, float sign)

参数

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

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

返回值

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

异常

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

以下示例演示了 Math copySign() 方法的用法。

package com.tutorialspoint;

public class MathDemo {

   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("Math.copySign(" + x + "," + y + ")=" + Math.copySign(x, y));
   }
}

输出

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

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

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

以下示例演示了使用交换参数的 Math copySign() 方法的另一种用法。

package com.tutorialspoint;

public class MathDemo {

   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("Math.copySign(" + y + "," + x + ")=" + Math.copySign(y, x));
   }
}

输出

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

Math.copySign(-0.4873, 125.9)=0.4873

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

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

package com.tutorialspoint;

public class MathDemo {

   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("Math.copySign(" + x + "," + y + ")=" + Math.copySign(x, y));
   }
}

输出

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

Math.copySign(0.0,-0.4873)=-0.0
java_lang_math.htm
广告