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


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



描述

这个java.lang.Math.copySign(float magnitude, float sign)返回第一个浮点参数和第二个浮点参数的符号。

声明

以下是声明java.lang.Math.copySign()方法

public static double copySign(float magnitude, float sign)

参数

  • magnitude− 提供结果大小的参数

  • sign− 提供结果符号的参数

返回值

此方法返回一个具有幅度大小和符号符号的值。

异常

NA

示例

下面的例子展示了 lang.Math.copySign() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class MathDemo {

   public static void main(String[] args) {

      // get two float numbers
      float x = 125.9f;
      float y = -0.4873f;
   
      // print a double with the magnitude of x and the sign of y
      System.out.println("Math.copySign(" + x + "," + y + ")=" + Math.copySign(x, y));

      // print a double with the magnitude of y and the sign of x
      System.out.println("Math.copySign(" + y + "," + x + ")=" + Math.copySign(y, x));
   }
}

让我们编译并运行上面的程序,这将产生以下结果 -

Math.copySign(125.9f, -0.4873f)=-125.9
Math.copySign(-0.4873f, 125.9f)=0.4873

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Math.copySign() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。