Scala 短 &(x: Short): Int
简而言之,一个 16 位有符号整数(相当于 Java 的 short 原始类型)是 scala.AnyVal 的子类型。 &(x:Int) 方法用于返回 Int 值对指定的短值进行按位与运算的结果。
Method Definition: def +(x: Short): Int
Return Type: It returns Int.
示例 #1:
// Scala program of Short &(x: Short)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Short &(x: Short) function
val result = (998.toShort).&(1000:Int)
// Displays output
println(result)
}
}
输出:
992
示例 #2:
// Scala program of Short &(x: Short)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Short &(x: Short) function
val result = (-111.toShort).&(1000:Int)
// Displays output
println(result)
}
}
输出:
896