位元異或(exclusive or) "^" 是Java中的運算符,如果運算元中的兩個位元不同,則傳回'1',如果兩個位元相同,則異或運算子傳回結果'0'。異或是一個從左到右計算的二進位運算子。對於型別為String的參數,運算子"^"是未定義的 。
public class XORTest1 { public static void main(String[] args) { boolean x = false; boolean y = false; boolean xXorY = x ^ y; System.out.println("false XOR false: "+xXorY); x = false; y = true; xXorY = x ^ y; System.out.println("false XOR true: "+xXorY); x = true; y = false; xXorY = x ^ y; System.out.println("true XOR false: "+xXorY); x = true; y = true; xXorY = x ^ y; System.out.println("true XOR true: "+xXorY); } }
false XOR false: false false XOR true: true true XOR false: true true XOR true: false
public class XORTest2 { public static void main(String[] args) { String str1 = "1010100101"; String str2 = "1110000101"; StringBuffer sb = new StringBuffer(); for (int i = 0; i < str1.length(); i++) { sb.append(str1.charAt(i)^str2.charAt(i)); } System.out.println(sb); } }
0100100000
以上是在Java中,XOR運算子的重要性是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!