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 } } আমি নিশ্চিত নই যে জাভা ল্যাঙ্গুয়েজ স্পেসিফিকেশনে এমন …