日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

java arguments_命令行中执行带参数的java程序(Command-Line Arguments)

發布時間:2024/9/19 编程问答 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。