斯卡拉字节^(x:字符):整数
在 Scala 中,Byte 是一个 8 位有符号整数(相当于 Java 的 byte 原始类型)。方法 ^(x:Char) 方法用于返回此值和 x 的按位异或。
Method Definition: Byte ^(x: Char): Int
Return Type: It returns return the bitwise XOR of this value and x.
示例 #1:
// Scala program of Byte ^(x: Char)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Byte ^(x: Char) function
val result = (110.toByte).^('G':Char)
// Displays output
println(result)
}
}
输出:
41
示例 #2:
// Scala program of Byte ^(x: Char)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Byte ^(x: Char) function
val result = (128.toByte).^('C':Char)
// Displays output
println(result)
}
}
输出:
-61