Open In App
Related Articles

Scala Int Compare Method With Examples

Improve Article
Improve
Save Article
Save
Like Article
Like

compare is an int class method in Scala which is used to compare this with that operand.

Syntax: (Given_Value1).compare(Given_Value2)

Returns: return -1 when Given_Value1 is less than Given_Value2. return 0 when both values are equal. return 1 when Given_Value1 is greater than Given_Value2.

Example 1:




// Scala Program to demonstrate the 
// compare method of Int class
  
object GfG
   
    // Main Method
    def main(args:Array[String])
    {
       
        // Applying the method
        val v1 = (451).compare(145)
           
        // Displaying the output
        println(v1)
       
    }


Output:

1

Example 2:




// Scala Program to demonstrate the 
// compare method of Int class
  
object GfG
   
    // Main Method
    def main(args:Array[String])
    {
       
        // Applying the method
        val v1 = (121).compare(1478)
           
        // Displaying the output
        println(v1)
       
    }


Output:

-1

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 30 Oct, 2019
Like Article
Save Article
Previous
Next
Similar Reads