异或运算符^
Posted 特仑苏灬
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了异或运算符^相关的知识,希望对你有一定的参考价值。
给数组a,求出a中单个的数字
public class YH {
public static void main(String[] args) {
int[] a=new int[] {2,8,1,1,8,3,2};
int r=0;
for(int i=0;i<7;i++) {
r^=a[i];//异或“^” 相同为0,相异为1;例如:0^s=s, s^s=0, a^b^b^a=0;
}
System.out.println(r);
}
}
以上是关于异或运算符^的主要内容,如果未能解决你的问题,请参考以下文章