2:命令行參數(shù) 我們把main成員函數(shù)的參數(shù)args稱為命令行參數(shù),args可以用來接收外界傳給Java應(yīng)用程序的參數(shù),下面我們舉一個(gè)例子來看看參數(shù)傳遞的具體過程: public class DrwRect { public static void main(String args[]) { class Rectangle { int width,height,area; public Rectangle(int w,int h) { width=w; height=h; area=getArea(w,h); }
protected int getArea(int w,int h) { int a; a=w*h; return a; }
public void drawRect() { int i,j; for(i=width;i>0;i--) System.out.print("#"); System.out.print("") ;
for(i=height-2;i>0;i--) System.out.print("#");
for(j=width-2;i>0;j--) System.out.print("");
System.out.print("#");
for(i=width;i>0;i--) System.out.print("#");
System.out.print(""); } } //Rectangle
int w=Integer.valueOf(args[0]).intValue(); int h=Integer.valueOf(args[1]).intValue(); Rectangle myrect=new Rectangle(w,h); myrect.drawRect(); } } 用Javac編譯該程序后,可以用java解釋器來執(zhí)行它,具體過程如下: