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