java arguments_命令行中执行带参数的java程序(Command-Line Arguments)
在cmd中運行java程序,可以在class名之后輸入參數。Eclipse中可點擊run configuration,在argument窗口中指定參數。--現學現賣
代碼如下:
//by pandenghuang@163.com/**
(Command-Line Arguments) Rewrite Fig. 7.2 so that the size of the array is specified by the
first command-line argument. If no command-line argument is supplied, use 10 as the default size
of the array.
*/
public class InitArray_cmd
{
public static void main(String[] args)
{
// declare variable array and initialize it with an array object
int[] array;
if (args.length!=0)
{
array = new int[Integer.parseInt(args[0])];
}
else
array = new int[10];
// new creates the array object
System.out.printf("%s%8s%n", "Index", "Value"); // column headings
// output each array element's value
for (int counter = 0; counter < array.length; counter++)
System.out.printf("%5d%8d%n", counter, array[counter]);
}
} // end class InitArray
運行結果:
總結
以上是生活随笔為你收集整理的java arguments_命令行中执行带参数的java程序(Command-Line Arguments)的全部內容,希望文章能夠幫你解決所遇到的問題。
 
                            
                        - 上一篇: 怎么清理路由器垃圾怎么用手机清除路由器垃
- 下一篇: Linux(Unix)时钟同步ntpd服
