Intellij IDEA中如何给main方法赋args

Posted sinceForever

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Intellij IDEA中如何给main方法赋args相关的知识,希望对你有一定的参考价值。

Intellij IDEA中如何给main方法赋args

程序:

package com.otherExample;

/**
 * Created by 谭雪娇 on 2017/3/29.
 */
public class args {
    public static void main(String[] args){
        System.out.println(args.length);
        System.out.println(args[0]);
        System.out.println(args[1]);
    }
}

 

1:点击Edit configurations

 

 

2:配置Program arguments参数如图:传入多个参数使用换行符即可

 

 

3:运行结果:

 

 

 

 

以上是关于Intellij IDEA中如何给main方法赋args的主要内容,如果未能解决你的问题,请参考以下文章

IntelliJ IDEA创建main等快捷方法

Intellij IDEA带参数运行Java main方法

Intellij IDEA如何设置syso,main

IntelliJ IDEA中提高代码开发效率的10个快捷操作

IntelliJ IDEA 运行你的第一个Java应用程序 idea运行main方法

Intellij Idea中的Jetty报出Web application not found src/main/webapp错误的解决方案