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