📜  Scala Long &(x: Byte) 方法

📅  最后修改于: 2022-05-13 01:54:57.170000             🧑  作者: Mango

Scala Long &(x: Byte) 方法

在 Scala 中,Long 是一个 64 位有符号整数,相当于 Java 的 long 原始类型。 &(x:Byte)方法用于返回指定 Long 值和 Byte 值的按位与。

示例 #1:

// Scala program to explain working of
// &(x: Byte) method
  
// Creating object
object GfG
{ 
  
// Main method
def main(args:Array[String])
{
  
// Applying &(x: Byte) method 
val result = (13.toLong).&(2^3:Byte)
  
// Displays output
println(result)
  
}
} 

输出:

1

示例 #2:

// Scala program to explain working of
// &(x: Byte) method
  
// Creating object
object GfG
{ 
  
// Main method
def main(args:Array[String])
{
  
// Applying &(x: Byte) method 
val result = (7.toLong).&(2^7:Byte)
  
// Displays output
println(result)
  
}
} 

输出:

5