Open In App

Scala Int CompareTo Method With Examples

Last Updated : 18 May, 2021
Comments
Improve
Suggest changes
Like Article
Like
Report

compareTo is an int class method in Scala which is used to compare this with that operand. It is similar to the compare Method.
 

Syntax: (Given_Value1).compareTo(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 
// compareTo method of Int class

object GfG
{ 
 
    // Main Method
    def main(args:Array[String])
    {
     
        // Applying the method
        val v1 = (500).compareTo(400)
         
        // Displaying the output
        println(v1)
     
    }
} 

Output: 
1

 

Example 2: 
 

Scala
// Scala Program to demonstrate the 
// compareTo method of Int class

object GfG
{ 
 
    // Main Method
    def main(args:Array[String])
    {
     
        // Applying the method
        val v1 = (200).compareTo(700)
         
        // Displaying the output
        println(v1)
     
    }
} 

Output: 
-1

 

Article Tags :

Similar Reads