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