Java - Float compare() 方法



描述

Java Float compare() 方法比较两个指定的浮点值。返回的整数值的符号与调用以下代码返回的整数值的符号相同:

new Float(f1).compareTo(new Float(f2))

声明

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

public static int compare(float f1, float f2)

参数

  • f1 − 这是第一个要比较的浮点数

  • f2 − 这是第二个要比较的浮点数。

返回值

如果 f1 在数值上等于 f2,则此方法返回 0;如果 f1 在数值上小于 f2,则返回小于 0 的值;如果 f1 在数值上大于 f2,则返回大于 0 的值。

异常

使用 compare() 方法比较浮点值示例

以下示例演示了如何使用 Float compare() 方法检查一个值是否大于另一个值。我们有两个浮点值,使用 compare() 方法比较这两个浮点值,然后将结果与 0 进行比较。如果结果大于 0,则第一个数字大于第二个数字。如果结果小于 0,则第一个数字小于第二个数字。否则,两个值相同。

package com.tutorialspoint;
public class FloatDemo {
   public static void main(String[] args) {

      // compares the two specified float values
      float f1 = 15.45f;
      float f2 = 11.50f;
      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 greater than f2

使用 compare() 方法比较不同的浮点值示例

以下另一个示例演示了如何使用 Float compare() 方法检查一个值是否小于另一个值。我们有两个浮点值,使用 compare() 方法比较这两个浮点值,然后将结果与 0 进行比较。如果结果大于 0,则第一个数字大于第二个数字。如果结果小于 0,则第一个数字小于第二个数字。否则,两个值相同。

package com.tutorialspoint;
public class FloatDemo {
   public static void main(String[] args) {

      // compares the two specified float values
      float f1 = 11.50f;
      float f2 = 15.45f;
      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

使用 compare() 方法比较相同的浮点值示例

以下示例演示了如何使用 Float compare() 方法检查一个值是否与另一个值相同。我们有两个浮点值,使用 compare() 方法比较这两个浮点值,然后将结果与 0 进行比较。如果结果大于 0,则第一个数字大于第二个数字。如果结果小于 0,则第一个数字小于第二个数字。否则,两个值相同。

package com.tutorialspoint;
public class FloatDemo {
   public static void main(String[] args) {

      // compares the two specified float values
      float f1 = 15.45f;
      float f2 = 15.45f;
      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 equal to f2
java_lang_float.htm
广告