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


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



描述

這個java.lang.StrictMath.signum(float f) 方法返回參數的符號函數,即如果參數為零,則為零,如果參數大於零,則返回 1.0f,如果參數小於零,則返回 -1.0f。它包括這些情況

  • 如果第一個參數是 NaN,則返回 NaN。 .
  • 如果參數為正零或負零,則結果與參數相同。

聲明

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

public static float signum(float f)

參數

f─ 這是要返回其符號的浮點值。

返回值

此方法返回參數的符號函數。

異常

NA

示例

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

package com.tutorialspoint;

import java.lang.*;

public class StrictMathDemo {

   public static void main(String[] args) {

      float f1 = 102.20f, f2 = 0.0f, f3 = -0.0f;
   
      // returns 1.0 if the argument is greater than zero
      float retval = StrictMath.signum(f1);
      System.out.println("Value = " + retval);

      /* if the argument is positive zero, then the result is the
         same as the argument */
      retval = StrictMath.signum(f2);
      System.out.println("Value = " + retval);
    
      /* if the argument is negative zero, then the result is the
         same as the argument */
      retval = StrictMath.signum(f3);
      System.out.println("Value = " + retval); 
   }
}

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

Value = 1.0
Value = 0.0
Value = -0.0

相關用法


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