Scala 字节 &(x: Short): Int
在 Scala 中,Byte 是一个 8 位有符号整数(相当于 Java 的 byte 原始类型)。 &(x:Short) 方法用于返回此值与 x 的按位与。
Method Definition: Byte &(x: Short): Int
Return Type: It returns the bitwise AND of this value and x.
示例 #1:
// Scala program of Byte &(x: Short)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Byte &(x: Short) function
val result = (167.toByte).&(125:Short)
// Displays output
println(result)
}
}
输出:
37
示例 #2:
// Scala program of Byte &(x: Short)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Byte &(x: Short) function
val result = (128.toByte).&(2:Short)
// Displays output
println(result)
}
}
输出:
0