Java Float Comparison : float « Data Type « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Data Type » float 




Java Float Comparison
       
public class Main {

  public static void main(String[] args) {
    float f1 = 5.5f;
    float f2 = 5.4f;
    int i1 = Float.compare(f1, f2);
    if (i1 > 0) {
      System.out.println(">");
    else if (i1 < 0) {
      System.out.println("<");
    else {
      System.out.println("=");
    }

    Float fObj1 = new Float("5.5");
    Float fObj2 = new Float("5.4");
    int i2 = fObj1.compareTo(fObj2);
    if (i2 > 0) {
      System.out.println(">");
    else if (i2 < 0) {
      System.out.println("<");
    else {
      System.out.println("=");
    }
  }
}

   
    
    
    
    
    
    
  














Related examples in the same category
1.Float class creates primitives that wrap themselves around data items of the float data type
2.convert Fahrenheit to Celsius back and forth with float
3.Floating-point comparisonsFloating-point comparisons
4.Float Double Time Float Double Time
5.Floating-point error diagnostics
6.Floating pioint comparisons
7.Min and Max values of data type float
8.Java float is 32 bit single precision type and used when fractional precision calculation is required.
9.Use toString method of Float class to convert Float into String.
10.Use Float constructor to convert float primitive type to a Float object.
11.Convert Java Float to Numeric Primitive Data Types
12.Convert Java String to Float Object
13.Java Float isInfinite Method
14.Java Float isNaN Method
15.Java Float Wrapper Class
16.Compare Two Java float Arrays
17.Convert from float to String
18.Convert from String to float
19.Pass floats as string literals to a method
20.Converting a String to a float type Number
21.Check if a string is a valid number
22.Floating­Point Types
23.Float compare to Float compare to
24.Returns the sign for float value x
25.Gets the maximum of three float values.
26.Gets the minimum of three float values.
27.Compares two floats for order.
28.Clones a two dimensional array of floats.
29.Compare two float values with Float.floatToIntBits
30.Class for float-point calculations in J2ME applications CLDC
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.