以下程序的运行显示的内容是(&nbsp &nbsp &nbsp) c...
发布于 2022-03-03 15:16:10
以下程序的运行显示的内容是( )
class TestArray{ public static void main(String argv[]){ TestArray t=new TestArray() System.out.println(t.method()) } public int method() { try { int array[]=new int[3] for(int i=0i<=array.lengthi++) {System.out.print(array[i]) } }catch (ArrayIndexOutOfBoundsException e) { System.out.println("索引超界") return -1 } finally{ System.out.println("正常执行完成") } return 0 } }
登录后免费查看答案
关注者
0
被浏览
23