遇到这3道笔试题,大家有把握能做对几道
如果在笔试(无法上机操作)的情况下,遇到这3道笔试题,大家有把握能做对几道
第一题:
public static void main(String[] args) throws Exception {int[] x = new int[6];Arrays.fill(x, 1);for (int i = 0; i < x.length; i++) {System.in.read();System.out.println(x[i]);}}这段代码,输入“1”(不含引号),按回车后,系统输出什么?
private static void foo() {try {System.out.println("try");foo();} catch (Throwable e) {System.out.println("catch");foo();} finally {System.out.println("finally");foo();}}public static void main(String[] args) {foo();}上述代码运行后:
A = 1;System.out.println(A);A是一个int类型变量,请在这段代码的前、后添加任意代码(但两句之间不能再插入代码),使得程序编译时第一句可以编译通过,而第二句出现编译错误。