java.lang.StrictMath.copySign(double magnitude, double sign)方法範例


java.lang.StrictMath.copySign(double magnitude, double sign) 方法返回第一個浮點引數與第二個浮點引數符號。 對於這種方法NaN符號始終為正。

宣告

以下是java.lang.StrictMath.copySign()方法的宣告

public static double copySign(double magnitude, double sign)

引數

  • magnitude -- 這是提供結果的量值的引數

  • sign -- 這是提供結果的符號的引數

返回值

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

異常

  • NA

例子

下面的例子顯示java.lang.StrictMath.copySign()方法的使用。

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    double d1 = 3.8 , d2 = -1, d3 = 1 , d4 = -14;

    /* returns the first double argument with the sign of the
    second double argument */

    double signedValue = StrictMath.copySign(d1, d2); 
    System.out.println("value of d1 with sign d2 : " + signedValue);
	
    signedValue = StrictMath.copySign(d1, d3);
    System.out.println("value of d1 with sign d3 : " + signedValue);
	
    signedValue = StrictMath.copySign(d2, d4);
    System.out.println("value of d2 with sign d4 : " + signedValue);
  }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

value of d1 with sign d2 : -3.8
value of d1 with sign d3 : 3.8
value of d2 with sign d4 : -1.0