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


Java Java.lang.StrictMath.copySign()用法及代碼示例



這個java.lang.StrictMath.copySign(float magnitude, float sign) 方法返回第一個浮點參數和第二個浮點參數的符號。對於此方法,始終將 NaN 符號參數視為正數。

聲明

以下是聲明java.lang.StrictMath.copySign()方法

public static float copySign(float magnitude, float sign)

參數

  • magnitude- 這是提供結果大小的參數

  • sign- 這是提供結果符號的參數

返回值

此方法返回一個帶有大小和符號的值。

異常

NA

示例

下麵的例子展示了 java.lang.StrictMath.copySign() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class StrictMathDemo {

   public static void main(String[] args) {

      float f1 = 3 , f2 = -1, f3 = 1 , f4 = -14;
   
      /* returns the first floating-point argument with the sign of the 
         second floating-point argument */

      float signedValue = StrictMath.copySign(f1 , f2); 
      System.out.println("value of f1 with sign f2:" + signedValue);

      signedValue = StrictMath.copySign(f1 , f3); 
      System.out.println("value of f1 with sign f3:" + signedValue);

      signedValue = StrictMath.copySign(f2 , f4); 
      System.out.println("value of f2 with sign f4:" + signedValue);
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

value of f1 with sign f2:-3.0
value of f1 with sign f3:3.0
value of f2 with sign f4:-1.0

相關用法


注:本文由純淨天空篩選整理自 Java.lang.StrictMath.copySign() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。