Signup/Sign In

Java Double compare() Method

Java compare() method belongs to the Double class. This method is used to compare the value of two double values numerically to find which one is greater than the other.

The compare(double x,double y) method returns the value

  • 0; if the value of x and y are equal.

  • -1; if the value of x is less than y.

  • 1; if the value of x is more than y.

Syntax:

public static int compare(double d1, double d2)  

Parameters:

The parameters passed consists of two float values double d1 and double d2 that represents the first and second double values to be compared respectively.

Returns:

Value 0, 1, -1 is returned depending upon the values of d1 and d2.

Example 1:

Here, four values n1 ,n2, n3, n4 are taken with respective double values and are checked for the values are either less, more, or equal than the compared values.

import java.lang.Double;

public class StudyTonight 
{  
    public static void main(String[] args) 
     {          
      double n1 = 100.0;  
      double n2 = 200.0;  
      double n3 = 300.0;  
      double n4 = 100.0;  
          
        System.out.println(Double.compare(n1, n2));  //Output will be less than zero
        
        System.out.println(Double.compare(n3, n1)); // Output will be greater than zero  
        
        System.out.println(Double.compare(n1,n4));  // Output will be equal to zero
      }  
}  


-1
1
0

Example 2:

Here, four double values n1, n2, n3, n4 are taken in an array and are checked for the values are either less, more, or equal when compared with the first value of the array.

import java.lang.Double;

public class StudyTonight 
{  
    public static void main(String[] args) 
    {          
      double []n = {-100.0,-200.0,300.0,-100.0};  
      
       for(int i=0;i<4;i++)

       {
          System.out.println(Double.compare(n[0], n[i]));  
        
       }  
    } 
} 


0
1
-1
0

Example 3:

Here is a general example where the user can enter the numbers of his choice and get the desired output. The try and catch block is used for handling any exception taking place during the execution of the program. (For example, the user enters a String, etc. in place of the double value).

import java.util.Scanner; 
import java.lang.Double;
public class StudyTonight 
{  
    public static void main(String[] args) 
    {      
        Scanner sc = new Scanner(System.in);  
        System.out.print("Enter first and second number ");  
          try
          {
           double n1 = sc.nextDouble();  
           double n2 = sc.nextDouble();  
           int r =  Double.compare(n1, n2);    
             if(r > 0)
              {  
               System.out.println("first number is greater");  
              }
              else if(r< 0) 
              {  
                System.out.println("second number is greater");  
              } 
              else
              {  
               System.out.println("both numbers are equal");
              }
           }
          catch(Exception e)
           {
            System.out.println("Error!!");
           }
          
      }  
 }  


Enter first and second number 895.88 -556.9
first number is greater
*****************************************************
Enter first and second number -88.99 -8.009
second number is greater
****************************************************
Enter first and second number 0x556 0x778
Error!!

Live Example:

Here, you can test the live code example. You can execute the example for different values, even can edit and write your examples to test the Java code.



About the author:
A Computer Science and Engineering Graduate(2016-2020) from JSSATE Noida. JAVA is Love. Sincerely Followed Sachin Tendulkar as a child, M S Dhoni as a teenager, and Virat Kohli as an adult.