WeChatf983

Java方法04:命令行传递参数

Java方法04:命令行传递参数

有时候你希望运行一个程序时再传递给它消息,这要靠传递命令行参数给main()函数实现。

代码:

package com.pzz.method;

public class Demo03 {
    public static void main(String[] args) {
        //args.length 数组长度
        for (int i = 0; i < args.length; i++) {
            System.out.println("args["+i+"]: " +args[i]);
        }
    }
}

posted on 2021-08-07 15:40  胖子_Blog  阅读(30)  评论(0编辑  收藏  举报

导航