有趣的代码实例

a,b交换

int a,b;
a=a^b;
b=a^b;
a=a^b
//这样ab的值就交换了
原文地址:https://www.cnblogs.com/Coder-Pig/p/6655407.html