Scala short >(x: Byte): 布尔值
简而言之,一个 16 位有符号整数(相当于 Java 的 short 原始类型)是 scala.AnyVal 的子类型。如果该值大于 x,则使用 >(x: Byte) 方法返回 true,否则返回 false。
Method Definition: def >(x: Byte): Boolean
Return Type: It returns true if this value is greater than x, otherwise false.
示例 #1:
// Scala program of Short >(x: Byte)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Short >(x: Byte) function
val result = (99.toShort).>(11:Byte)
// Displays output
println(result)
}
}
输出:
true
示例 #2:
// Scala program of Short >(x: Byte)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Short >(x: Byte) function
val result = (102.toShort).>(101:Byte)
// Displays output
println(result)
}
}
输出:
true