标签:
最近看到比较牛的互换变量值的书,来分享一下:
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+"\t"+b); } }
标签:
原文地址:http://www.cnblogs.com/leonxiaosi/p/4453518.html