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


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

宣告

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

public static float copySign(float magnitude, float sign)

引數

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

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

返回值

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

異常

  • NA

例子

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

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    float f1 = 3 , f2 = -1, f3 = 1 , f4 = -14;

    /* returns the first floating-point argument with the sign of the 
    second floating-point argument */
       
    float signedValue = StrictMath.copySign(f1 , f2); 
    System.out.println("value of f1 with sign f2 : " + signedValue);
    
    signedValue = StrictMath.copySign(f1 , f3); 
    System.out.println("value of f1 with sign f3 : " + signedValue);
    
    signedValue = StrictMath.copySign(f2 , f4); 
    System.out.println("value of f2 with sign f4 : " + signedValue);
  }
}

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

value of f1 with sign f2 : -3.0
value of f1 with sign f3 : 3.0
value of f2 with sign f4 : -1.0