Open In App

Scala Int Compare Method With Examples

Last Updated : 30 Oct, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
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
// 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
// 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

Next Article
Article Tags :

Similar Reads