Java StrictMath copySign()方法

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

1 语法

public static double copySign(double magnitude, double 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) {
  
    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

 

热门文章

优秀文章