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