14
Warum ist x == (x = y) nicht dasselbe wie (x = y) == x?
Betrachten Sie das folgende Beispiel: 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 } } Ich bin nicht sicher, ob es in …