14
Perché x == (x = y) non è uguale a (x = y) == x?
Considera il seguente esempio: class Quirky { public static void main(String[] args) { int x = 1; int y = 3; System.out.println(x == (x = y)); // false x = 1; // reset System.out.println((x = y) == x); // true } } Non sono sicuro se nella specifica del linguaggio …