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