斯卡拉短&(x:长):长
简而言之,一个 16 位有符号整数(相当于 Java 的 short 原始类型)是 scala.AnyVal 的子类型。 &(x: Long) 方法用于返回长值对指定长值的按位与运算的结果。
Method Definition: def +(x: Long): Long
Return Type: It returns Long.
示例 #1:
// Scala program of Short &(x: Long)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Long &(x: Long) function
val result = (998).&(100000L)
// Displays output
println(result)
}
}
输出:
672
示例 #2:
// Scala program of Short &(x: Long)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Long &(x: Long) function
val result = (111).&(-100000L)
// Displays output
println(result)
}
}
输出:
96