14
X == (x = y) समान क्यों नहीं है (x = y) == x?
निम्नलिखित उदाहरण पर विचार करें: 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 } } मुझे यकीन नहीं है कि अगर जावा …