?? helloworld.java
字號:
public class HelloWorld{
public static void main(String args[ ]){
int i=0;
String greetings[ ]={ "Hello World!","Hello!",
"HELLO WORLD!!"};
while ( i<4){
try {
System.out.println(greetings[i]);
}catch(ArrayIndexOutOfBoundsException e){
System.out.println("Re-setting Index Value");
// i=-1;
}finally{
System.out.println("This is always printed");
}
i++;
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -