?? commandargtest.java
字號:
// TIJ4 Chapter Object, Exercise 10, page 90
// Write a program that prints three arguments taken from the command line. To do // this you'll need to index into the command-line array of Strings.
public class CommandArgTest {
public static void main(String[] args) {
System.out.println("args[0] = " + args[0]);
System.out.println("args[1] = " + args[1]);
System.out.println("args[2] = " + args[2]);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -