public class Test{
public static void main(String[] args) {
System.out.println("What that String do in main function argument");
}
}
问问题
167 次
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
于 2012-10-26T16:25:05.537 回答