8
Trả về null dưới dạng int được phép với toán tử ternary nhưng không phải là câu lệnh if
Hãy xem mã Java đơn giản trong đoạn mã sau: public class Main { private int temp() { return true ? null : 0; // No compiler error - the compiler allows a return value of null // in a method signature that returns an int. } private int same() …