描述
这个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.tutorialspoint;
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
相关用法
- Java Java.lang.StrictMath.copySign()用法及代码示例
- Java Java.lang.StrictMath.cos()用法及代码示例
- Java Java.lang.StrictMath.cosh()用法及代码示例
- Java Java.lang.StrictMath.cbrt()用法及代码示例
- Java Java.lang.StrictMath.ceil()用法及代码示例
- Java Java.lang.StrictMath.tanh()用法及代码示例
- Java Java.lang.StrictMath.toDegrees()用法及代码示例
- Java Java.lang.StrictMath.tan()用法及代码示例
- Java Java.lang.StrictMath.abs()用法及代码示例
- Java Java.lang.StrictMath.signum()用法及代码示例
- Java Java.lang.StrictMath.sinh()用法及代码示例
- Java Java.lang.StrictMath.toRadians()用法及代码示例
- Java Java.lang.StrictMath.scalb()用法及代码示例
- Java Java.lang.StrictMath.log10()用法及代码示例
- Java Java.lang.StrictMath.atan2()用法及代码示例
- Java Java.lang.StrictMath.random()用法及代码示例
- Java Java.lang.StrictMath.max()用法及代码示例
- Java Java.lang.StrictMath.expm1()用法及代码示例
- Java Java.lang.StrictMath.round()用法及代码示例
- Java Java.lang.StrictMath.nextAfter()用法及代码示例
注:本文由纯净天空筛选整理自 Java.lang.StrictMath.copySign() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。