Java Float compare()方法

java.lang.Float.compare() 方法比较两个指定的float值。返回整数值的符号是相同的,通过调用被返回整数:new Float(f1).compareTo(new Float(f2))

1 语法

public static int compare(float f1, float f2)

2 参数

f1 :这是第一个要比较浮点数。

f2 :这是第二个比较浮点数。

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Float compare()方法
 */
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

 

热门文章

优秀文章