不用第三个变量,互换两个变量的值

分享一下:

public class VariableExchange {

    public static void main(String[] args) {
        int a=1;
        int b=4;
        a=a ^ b;
        System.out.println(a);
        b=b ^ a;
        System.out.println(b);
        a=a ^ b;
        System.out.println(a+"	"+b);
    }

}
原文地址:https://www.cnblogs.com/leonxiaosi/p/4453518.html