有人可以一步一步地解释这是如何工作的(最终y
如何成为x
而x
成为y
)?
#include <iostream>
using namespace std;
int main()
{
int x, y;
x = 2; y = 3;
x ^= y ^= x ^= y; // <- how this line exactly works?
cout << x << ' ' << y << endl; //returns: 3 2
system("pause");
}