我收到錯誤信息,如果我執行下面的程序。它說o
無法解析爲變量。以下Java程序的輸出是什麼?爲什麼我得到錯誤
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
try{
int o[] = new int[2];
o[3]=23;
o[1]=33;
}catch(Exception e){
System.out.println(e.getMessage());
e.printStackTrace();
}
System.out.println(o[1]); //THis line shows the error.
}
}
爲什麼我會收到該行System.out.println(o[1]);
?
看的,如通過印刷你的'catch'塊。 –