带有示例的 Scala Char ^(x: Byte) 方法
^(x: Byte)方法用于在参数列表中找到所述字符和给定 Byte 类型的“x”的按位异或。
Method Definition: def ^(x: Byte): Int
Return Type:It returns the bit-wise XOR of the stated character and given Byte type “x”.
示例:1#
// Scala program of ^(x: Byte)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying ^(x: Byte) method
val result = 'B'.^(127)
// Displays output
println(result)
}
}
输出:
61
示例:2#
// Scala program of ^(x: Byte)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying ^(x: Byte) method
val result = 'B'.^(-128)
// Displays output
println(result)
}
}
输出:
-62