Scala Byte ^(x: Byte): Int
In Scala, Byte is a 8-bit signed integer (equivalent to Java’s byte primitive type). The method ^(x:Byte) method is utilized to return the bitwise XOR of this value and x.
Method Definition: Byte ^(x: Byte): Int
Return Type: It returns return the bitwise XOR of this value and x.
Example #1:
// Scala program of Byte ^(x: Byte) // method // Creating object object GfG { // Main method def main(args : Array[String]) { // Applying Byte ^(x: Byte) function val result = ( 110 .toByte).^( 2 : Byte) // Displays output println(result) } } |
Output:
108
Example #2:
// Scala program of Byte ^(x: Byte) // method // Creating object object GfG { // Main method def main(args : Array[String]) { // Applying Byte ^(x: Byte) function val result = ( 128 .toByte).^( 11 : Byte) // Displays output println(result) } } |
Output:
-117
Please Login to comment...