2
Toán tử 'instanceof' hoạt động khác nhau đối với các giao diện và lớp
Tôi muốn biết về hành vi sau của instanceoftoán tử trong Java. interface C {} class B {} public class A { public static void main(String args[]) { B obj = new B(); System.out.println(obj instanceof A); //Gives compiler error System.out.println(obj instanceof C); //Gives false as output } } Tại sao …