-2
public class Test{
    public static void main(String[] args) {
        System.out.println("What that String do in main function argument");
    }
}
4

3 回答 3

3

为代码提供命令行参数。

这里有一些参考:Hello World 教程

于 2012-10-26T16:24:54.730 回答
3

如果你在命令行上运行它,你可以传入参数。

java myprogram a b c d "e f g"

会产生args = ["a", "b", "c", "d", "e f g"]

于 2012-10-26T16:25:19.547 回答
0

这些是指命令行参数:http ://docs.oracle.com/javase/tutorial/essential/environment/cmdLineArgs.html

于 2012-10-26T16:25:05.537 回答