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


Java Java.lang.Float.compare()用法及代碼示例



描述

這個java.lang.Float.compare() 方法比較兩個指定的浮點值。返回的整數值的符號與調用返回的整數的符號相同 -

新浮點數(f1)。比較(新浮點數(f2))

聲明

以下是聲明java.lang.Float.compare()方法

public static int compare(float f1, float f2)

參數

  • f1- 這是要比較的第一個浮點數。

  • f2- 這是要比較的第二個浮點數。

返回值

如果 f1 在數值上等於 f2,則此方法返回值 0;如果 f1 在數值上小於 f2,則為小於 0 的值;如果 f1 在數值上大於 f2,則該值大於 0。

異常

NA

示例

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

package com.tutorialspoint;

import java.lang.*;

public class FloatDemo {

   public static void main(String[] args) {

      // compares the two specified float values
      float f1 = 22.30f;
      float f2 = 88.67f;
      int retval = Float.compare(f1, f2);
    
      if(retval > 0) {
         System.out.println("f1 is greater than f2");
      } else if(retval < 0) {
         System.out.println("f1 is less than f2");
      } else {
         System.out.println("f1 is equal to f2");
      }
   }
}

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

f1 is less than f2

相關用法


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