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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。