當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。