如果第一个数字等于第二个数字,则使用compare()方法返回0;如果第一个数字大于第二个数字,则返回1;如果第一个数字小于第二个数字,则返回-1。
函数定义: (First_Number).compare(Second_Number)
返回类型: It returns 0 if the first number is equal to the second number, 1 if the first number is greater then the second number and finally -1 if the first number is less than the second number.
范例1:
// Scala program of Float compare()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying compare method
val result = (5).compare(5)
// Displays output
println(result)
}
}
输出:
0
范例2:
// Scala program of Float compare()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying compare method
val result = (5).compare(2)
// Displays output
println(result)
}
}
输出:
1
范例3:
// Scala program of Float compare()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying compare method
val result = (5).compare(9)
// Displays output
println(result)
}
}
输出:
-1
相关用法
- Scala Float until(end: Float, step: Float)用法及代码示例
- Scala Float to(end: Float, step: Float)用法及代码示例
- Scala Int compare()用法及代码示例
- Scala Int Compare用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Scala Float compare() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。