带有示例的 Scala Char >=(x: Double) 方法
>=(x: Double)方法用于查找指定的字符值是否大于或等于'x'。 'x' 的类型必须是 Double。
Method Definition: def >=(x: Double): Boolean
Return Type: It returns true if the stated character value is greater than or equal to “x” else it returns false.
示例:1#
// Scala program of >=(x: Double)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying >=(x: Double) method
val result = '\n'.>=(11.95666)
// Displays output
println(result)
}
}
输出:
false
示例:2#
// Scala program of >=(x: Double)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying >=(x: Double) method
val result = '\n'.>=(9.95666)
// Displays output
println(result)
}
}
输出:
true