Scala Long abs() 方法与示例
abs() 方法用于返回给定整数值的绝对值。任何数字的绝对值是该数字的大小,即没有任何符号。
Method Definition: def abs: Float
Return Type: It return the absolute value of the given integer value.
示例 1:
// Scala program of Long abs()
// method
// Creating object
object Test
{
// Main method
def main(args
: Array[String])
{
// Applying abs method
val res = (-7002).abs
// Displays output
println(res)
}
}
输出:
7002
示例 2:
// Scala program of Long abs()
// method
// Creating object
object Test
{
// Main method
def main(args : Array[String])
{
// Applying abs method
val res = (-7002).abs
// Displays output
println(res)
}
}
输出:
23.42