对称交换两端的值,即省下中间量交换a+b的值。
line1 a = a + b ;
line2 b = a - b ; // 此时的b,即为原来 (line1)a 的值
line3 a = a - b ; // 此时的a,即为原来 (line1)b 的值