main方法中的参数args????
public class Yippee{
public static void main(String[] args){
for(int x=1;x <args.length;x++){
System.out.print(args[x]+ " ");
}
}
}
and two separate command line invocations:
java Yippee
java Yippee 1234
what is the result?
这一题是如何执行的呢?这两行命令是如何用的呢?
请多多指教!!!
[解决办法]