Java StrictMath copySign()方法

java.lang.StrictMath.copySign(float magnitude, float sign) 方法返回一个浮点参数与第二个浮点符号。对于这种方法,是NaN符号参数始终被视为是否为正值。

1 语法

public static float copySign(float magnitude, float sign)

2 参数

magnitude :这是提供结果的量值的参数

sign :这是提供结果的符号参数

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StrictMath copySign()方法
 */
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

 

热门文章

优秀文章