位置:首页 > Java技术 > java.lang > java.lang.Math.copySign(float magnitude, float sign)方法实例

java.lang.Math.copySign(float magnitude, float sign)方法实例

java.lang.Math.copySign(float magnitude, float sign) 返回第一个浮点参数与第二个浮点参数符号。

声明

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

public static double copySign(float magnitude, float sign)

参数

  • magnitude -- 提供的结果的幅度的参数

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

返回值

此方法返回幅度的大小和符号的符号值。

异常

  • NA

例子

下面的例子显示lang.Math.copySign()方法的使用。

package com.yiibai;

import java.lang.*;

public class MathDemo {

   public static void main(String[] args) {

      // get two float numbers
      float x = 125.9f;
      float y = -0.4873f;

      // print a double with the magnitude of x and the sign of y
      System.out.println("Math.copySign(" + x + "," + y + ")="
              + Math.copySign(x, y));

      // print a double with the magnitude of y and the sign of x
      System.out.println("Math.copySign(" + y + "," + x + ")="
              + Math.copySign(y, x));

   }
}

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

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