Scala 字节 <(x: Char): 布尔值
在 Scala 中,Byte 是一个 8 位有符号整数(相当于 Java 的 byte 原始类型)。如果该值小于 x,则使用方法 <(x:Char) 方法返回 true,否则返回 false。
Method Definition: Byte <(x: Char): Boolean
Return Type: It returns true if this value is less than x, false otherwise.
示例 #1:
// Scala program of Byte <(x: Char)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Byte <(x: Char) function
val result = (64.toByte).<('C':Char)
// Displays output
println(result)
}
}
输出:
true
示例 #2:
// Scala program of Byte <(x: Char)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Byte <(x: Char) function
val result = (125.toByte).<('G':Char)
// Displays output
println(result)
}
}
输出:
false