compareTo是Scala中的int类方法,用于将其与该操作数进行比较。它类似于compare方法。
用法: (Given_Value1).compareTo(Given_Value2)
返回值:当Given_Value1小于Given_Value2时,返回-1。两个值相等时,将其调整为0。当Given_Value1大于Given_Value2时,返回1。
示例1:
// 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)
}
}
输出:
1
示例2:
// 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)
}
}
输出:
-1
相关用法
- Scala Int compareTo()用法及代码示例
- Scala String compareTo()用法及代码示例
- Scala Char compareTo()用法及代码示例
- Scala Float compareTo()用法及代码示例
- Scala Int Compare用法及代码示例
- Scala Listset apply()用法及代码示例
- Scala map()用法及代码示例
- Scala Int max()用法及代码示例
- Scala Set -()用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Scala Int CompareTo Method With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。