Signup/Sign In

Java Integer compare() Method

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

The compare(int x,int 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(int x, int y) 

Parameters:

The parameters passed consists of two integers int x and int y that represents the first and second integers to be compared respectively.

Returns:

Value 0, 1, -1 is returned depending upon the values of x and y.

Example 1:

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

import java.lang.Integer;

public class StudyTonight 
{  
    public static void main(String[] args) 
     {          
      int n1 = 100;  
      int n2 = 200;  
      int n3 = 300;  
      int n4 = 100;  
          
        System.out.println(Integer.compare(n1, n2));  //Output will be less than zero
        
        System.out.println(Integer.compare(n3, n1)); // Output will be greater than zero  
        
        System.out.println(Integer.compare(n1,n4));  // Output will be equal to zero
      }  
}  


-1
1
0

Example 2:

Here, four integers 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.Integer;

public class StudyTonight 
{  
    public static void main(String[] args) 
    {          
      int []n = {-100,-200,300,-100};  
      
       for(int i=0;i<4;i++)

       {
          System.out.println(Integer.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 integer).

import java.util.Scanner; 
import java.lang.Integer;
public class StudyTonight 
{  
    public static void main(String[] args) 
    {      
        Scanner sc = new Scanner(System.in);  
        System.out.print("Enter first and second number ");  
          try
          {
           int n1 = sc.nextInt();  
           int n2 = sc.nextInt();  
           int r =  Integer.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 100 452
second number is greater

Enter first and second number 0x789 890
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.