Scala Int &(x: Long) 方法与示例
&(x: Long)方法用于返回对指定的 int 值与 long 值进行按位与运算的结果。
Method Definition: (Int_Value).&(Long_Value)
Return Type: It returns a result of the bitwise AND operation on the specified int value by the long value.
示例 #1:
// Scala program of Int &(x: Long)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Int &(x: Long) function
val result = (10).&(6)
// Displays output
println(result)
}
}
输出:
2
示例 #2:
// Scala program of Int &(x: Long)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Int &(x: Long) function
val result = (10).&(8)
// Displays output
println(result)
}
}
输出:
8