Thursday, June 11, 2026
HomeLanguagesJavaJava Guava | compare() method of Short Class with Examples

Java Guava | compare() method of Short Class with Examples

Shorts.compare() method of Guava’s Shorts Class is used to compare the two specified short values. These values are passed as the parameter and the result of comparison is found as the difference of 1st value and the 2nd value. Hence it can be positive, zero or negative.

Syntax:

public static int compare(short x, short y)

Parameters: This method accepts two parameters:

  • x: which is the first Short object to be compared.
  • y: which is the Short object to be compared.

Return type: It returns an int value. It returns:

  • 0 if ‘x’ is equal to ‘y’,
  • a positive value ‘x’ is greater than ‘y’,
  • a negative value ‘x’ is lesser than ‘y’

Below is the implementation of compare() method in Java:
Example 1:




// Java code to show implementation of
// Guava's Shorts.compare() method
import com.google.common.primitives.Shorts;
  
class GFG {
    public static void main(String[] args)
    {
  
        short a = 4;
  
        short b = 4;
  
        // compare method in Short class
        int output = Shorts.compare(a, b);
  
        // printing the output
        System.out.println("Comparing " + a
                           + " and " + b + " : "
                           + output);
    }
}


Output:

Comparing 4 and 4 : 0

Example 2:




// Java code to show implementation of
// Guava's Shorts.compare() method
import com.google.common.primitives.Shorts;
  
class GFG {
    public static void main(String[] args)
    {
  
        short a = 4;
  
        short b = 2;
  
        // compare method in Short class
        int output = Shorts.compare(a, b);
  
        // printing the output
        System.out.println("Comparing " + a
                           + " and " + b + " : "
                           + output);
    }
}


Output:

Comparing 4 and 2 : 2

Example 3:




// Java code to show implementation of
// Guava's Shorts.compare() method
import com.google.common.primitives.Shorts;
  
class GFG {
    public static void main(String[] args)
    {
  
        short a = 2;
  
        short b = 4;
  
        // compare method in Short class
        int output = Shorts.compare(a, b);
  
        // printing the output
        System.out.println("Comparing " + a
                           + " and " + b + " : "
                           + output);
    }
}


Output:

Comparing 2 and 4 : -2
RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS