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
相關用法
- Scala Int compare()用法及代碼示例
- Scala Char compare()用法及代碼示例
- Scala Float compare()用法及代碼示例
- Scala Int CompareTo用法及代碼示例
- Scala Listset apply()用法及代碼示例
- Scala Set take()用法及代碼示例
- Scala Set map()用法及代碼示例
- Scala Set sum()用法及代碼示例
- Scala Set +()用法及代碼示例
- Scala Set min()用法及代碼示例
- Scala Set max()用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Scala Int Compare Method With Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。