位置:首頁 > Java技術 > java.lang > java.lang.Math.copySign(double magnitude, double sign)方法實例

java.lang.Math.copySign(double magnitude, double sign)方法實例

java.lang.Math.copySign(double magnitude, double sign) 返回第二個浮點參數符號和第一個浮點參數。

聲明

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

public static double copySign(double magnitude, double sign)

參數

  • magnitude -- 提供的結果的量值的參數

  • sign -- 提供的結果的符號的參數

返回值

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

異常

  • NA

例子

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

package com.yiibai;

import java.lang.*;

public class MathDemo {

   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("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.9, -0.4873)=-125.9
Math.copySign(-0.4873, 125.9)=0.4873