提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
计算数组的异或。
//package com.nowjava;/** from NowJava.com - 时 代 Java**/ public class Main { public static void main(String[] argv) throws Exception { byte[] a = new byte[] { 34, 35, 36, 37, 37, 37, 67, 68, 69 }; byte[] b = new byte[] { 34, 35, 36, 37, 37, 37, 67, 68, 69 }; System.out.println(java.util.Arrays.toString(xorArrays(a, b))); } /** * Computes array-wise XOR. * * @param a * the first array. * @param b * the second array. * @return the XOR-ed array. */ public static byte[] xorArrays(byte[] a, byte[] b) { byte[] xor = new byte[a.length]; /**来自 时 代 J a v a 公 众 号 - nowjava.com**/