Scala 短 &(x: Byte): Int
简而言之,一个 16 位有符号整数(相当于 Java 的 short 原始类型)是 scala.AnyVal 的子类型。 &(x:Int) 方法用于返回 Int 值对指定 Byte 值的按位与运算的结果。
Method Definition: def +(x: Byte): Int
Return Type: It returns Int.
示例 #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 = (998.toShort).&(125:Byte)
// Displays output
println(result)
}
}
输出:
100
示例 #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).&(47:Byte)
// Displays output
println(result)
}
}
输出:
1