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