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