本谜题要测试你对Java的两个最经典的操作符:instanceof和转型的理解程度。下面的三个程序每一个都会做些什么呢? public class Type1 { public static void main(String[] args) { String s = null. System.out.println(s instanceof String). } }
public class Type2 { public static void main(String[] args) { System.out.println(new Type2() instanceof String). } }
public class Type3 { public static void main(String args[]) { Type3 t3 = (Type3) new Object(). } }