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