14
Dlaczego x == (x = y) to nie to samo co (x = y) == x?
Rozważ następujący przykład: 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 } } Nie jestem pewien, czy w specyfikacji języka Java znajduje …