signum()方法用於對正指定數返回1,對負指定數返回-1,對0指定值返回0。
函數定義: (Value).signum
返回類型: It returns 1 for positive specified number, -1 for negative specified number and 0 for 0 specified value.
範例1:
// Scala program of Float signum()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying signum method
val result = (5).signum
// Displays output
println(result)
}
}
輸出:
1
範例2:
// Scala program of Float signum()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying signum method
val result = (-5).signum
// Displays output
println(result)
}
}
輸出:
-1
範例3:
// Scala program of Float signum()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying signum method
val result = (0).signum
// Displays output
println(result)
}
}
輸出:
0
相關用法
- Scala Int signum()用法及代碼示例
- Scala Char signum()用法及代碼示例
- Scala Float until(end: Float, step: Float)用法及代碼示例
- Scala Float to(end: Float, step: Float)用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Scala Float signum() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。