要比较Java中的Float,请使用以下方法-
java.lang.Float.compareTo()方法比较两个Float对象。如果新的float值在数值上等于此Float,则此方法返回值0;否则,返回0。如果此Float在数值上小于新的float,则该值小于0;如果此Float在数值上大于新的float,则该值大于0。
这是一个例子-
import java.lang.*; public class Demo { public static void main(String args[]) { Float f1 = new Float("25.2"); Float f2 = new Float("25.20"); int res = f1.compareTo(f2); if(res > 0) { System.out.println("f1 is greater than f2"); } else if(res < 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.compare()方法以数字方式比较两个float值对象。如果f1在数值上等于f2,则此方法返回值0;否则,返回0。如果f1在数值上小于f2,则该值小于0;如果f1在数值上大于f2,则该值大于0。
让我们看一个例子-
import java.lang.*; public class Demo { public static void main(String args[]) { float f1 = 29.29f; float f2 = 55.55f; int res = Float.compare(f1, f2); if(res > 0) { System.out.println("f1 is greater than f2"); } else if(res < 0) { System.out.println("f1 is less than f2"); } else { System.out.println("f1 is equal to f2"); } } }
f1 is less than f2