当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Math copySign()用法及代码示例


java.lang.Math.copySign()方法返回第一个参数,并带有第二个参数的符号。

注意:
参数可以有两种类型:

  • 双精度类型:copySign(double magt,double sign)
  • 浮点数类型:copySign(float magt,float sign)

用法:


public static double copySign(DataType magt, DataType sign)
参数:
 magt:argument providing the magnitude of the result.
 sign:argument providing the sign of the result.
返回:
This method returns the magnitude of the first argument with the sign of the 
second argument.

例:展示java.lang.Math.copySign()方法的用法。

// Java program to demonstrate working 
// of java.lang.Math.copySign() method 
import java.lang.Math; 
  
class Gfg { 
  
    // driver code 
    public static void main(String args[]) 
    { 
        double a = 34.543; 
        double b = -123.44; 
  
        // Input a, b 
        // Output -34.543( a- Magnitude, b- Sign) 
        System.out.println(Math.copySign(a, b)); 
  
        // Input b, a 
        // Output 123.44( b- Magnitude, a- Sign) 
        System.out.println(Math.copySign(b, a)); 
  
        float c = 87.56f; 
        float d = -685.23f; 
  
        // Input c, d 
        // Output -87.56( c- Magnitude, d- Sign) 
        System.out.println(Math.copySign(c, d)); 
  
        // Input d, c 
        // Output 685.23( d- Magnitude, c- Sign) 
        System.out.println(Math.copySign(d, c)); 
    } 
}

输出:

-34.543
123.44
-87.56
685.23


相关用法


注:本文由纯净天空筛选整理自Niraj_Pandey大神的英文原创作品 Java Math copySign() method with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。