Scala Float isPosInfinity() 方法与示例
isPosInfinity()方法用于在 Float 值或指定的 float 值为正无穷大时返回 true,否则返回 false。
Method Definition: (Float_Number).isPosInfinity
Return Type: It returns true if the Float value or the specified float value is positive infinity number, or false otherwise.
示例 #1:
// Scala program of Float isPosInfinity()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying isPosInfinity method
val result = (7.965).isPosInfinity
// Displays output
println(result)
}
}
输出:
false
示例 #2:
// Scala program of Float isPosInfinity()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying isPosInfinity method
val result = (0.0/0.0).isPosInfinity
// Displays output
println(result)
}
}
输出:
false