当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Scala Int Compare用法及代码示例


compare是Scala中的int类方法,用于将其与该操作数进行比较。

用法: (Given_Value1).compare(Given_Value2)

返回值:当Given_Value1小于Given_Value2时,返回-1。两个值相等时返回0。当Given_Value1大于Given_Value2时,返回1。


示例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) 
       
    } 
} 
输出:
1

示例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) 
       
    } 
} 
输出:
-1


相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Scala Int Compare Method With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。