📜  Java中的浮点比较()方法与示例

📅  最后修改于: 2022-05-13 01:54:22.241000             🧑  作者: Mango

Java中的浮点比较()方法与示例

Float 类compare()方法是Java中的一个内置方法,用于比较两个指定的浮点值。返回的整数值的符号与函数调用将返回的整数的符号相同。

句法:

public static int compare(float f1, float f2)

参数:该函数接受两个参数:

  • f1 :要比较的第一个浮点值。
  • f2 :要比较的第二个浮点值。

返回值:函数返回值如下:

  • 0:如果 f1 在数值上等于 f2。
  • 负值:如果 f1 在数值上小于 f2。
  • 正值:如果 f1 在数值上大于 f2。

下面的程序说明了 Float.compare()函数的使用:

程序1:当两个整数相同时

Java
// Java Program to illustrate
// the Float.compare() method
 
import java.lang.Float;
 
public class GFG {
    public static void main(String[] args)
    {
 
        // Get the two float values
        // to be compared
        Float f1 = 1023f;
        Float f2 = 1023f;
 
        // function call to compare two float values
        if (Float.compare(f1, f2) == 0) {
 
            System.out.println("f1=f2");
        }
        else if (Float.compare(f1, f2) < 0) {
 
            System.out.println("f1f2");
        }
    }
}


Java
// Java Program to illustrate
// the Float.compare() method
 
import java.lang.Float;
 
public class GFG {
    public static void main(String[] args)
    {
 
        // Get the two float values
        // to be compared
        Float f1 = 10f;
        Float f2 = 1023f;
 
        // function call to compare two float values
        if (Float.compare(f1, f2) == 0) {
 
            System.out.println("f1=f2");
        }
        else if (Float.compare(f1, f2) < 0) {
 
            System.out.println("f1f2");
        }
    }
}


Java
// Java Program to illustrate
// the Float.compare() method
 
import java.lang.Float;
 
public class GFG {
    public static void main(String[] args)
    {
 
        // Get the two float values
        // to be compared
        Float f1 = 1023f;
        Float f2 = 10f;
 
        // function call to compare two float values
        if (Float.compare(f1, f2) == 0) {
 
            System.out.println("f1=f2");
        }
        else if (Float.compare(f1, f2) < 0) {
 
            System.out.println("f1f2");
        }
    }
}


输出:
f1=f2

程序 2:当 f1

Java

// Java Program to illustrate
// the Float.compare() method
 
import java.lang.Float;
 
public class GFG {
    public static void main(String[] args)
    {
 
        // Get the two float values
        // to be compared
        Float f1 = 10f;
        Float f2 = 1023f;
 
        // function call to compare two float values
        if (Float.compare(f1, f2) == 0) {
 
            System.out.println("f1=f2");
        }
        else if (Float.compare(f1, f2) < 0) {
 
            System.out.println("f1f2");
        }
    }
}
输出:
f1

程序 3:当 f1>f2

Java

// Java Program to illustrate
// the Float.compare() method
 
import java.lang.Float;
 
public class GFG {
    public static void main(String[] args)
    {
 
        // Get the two float values
        // to be compared
        Float f1 = 1023f;
        Float f2 = 10f;
 
        // function call to compare two float values
        if (Float.compare(f1, f2) == 0) {
 
            System.out.println("f1=f2");
        }
        else if (Float.compare(f1, f2) < 0) {
 
            System.out.println("f1f2");
        }
    }
}
输出:
f1>f2

参考:https: Java/lang/Float.html#compare(float, %20float)