當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。