Android studio 运行main 函数的方法

标题Gradle构建问题

切换到Project工程下.idea/gradle.xml添加属性
<option name="delegatedBuild" value="false" />

图例

PS:下面通过示例代码看下JAVA中的main函数

package com.han;

public class HanTest {
 public static void main(String[] args){
 if(args==null){
  throw new NullPointerException("The input is \"null\"");
 }else if((args.length!=1&&args.length!=2)){
  Throwable cause=new Throwable("You have to input 1 or 2 String arguments");
  throw new IllegalArgumentException("Wrong numbers of args",cause);
  //throw new IllegalArgumentException("Wrong numbers of args");
 }else if(args.length==1){
  System.out.println(args[0]);
 }else if(args.length==2){
  System.out.println(args[0]);
  System.out.println(args[1]);
 }
 }
}
package com.han;
public class HanTest2 {
 public static void main(String[] args){
 String[] input={"han"};
 //HanTest.main(null);
 HanTest.main(input);
 }
}

总结

到此这篇关于Android studio 运行main 函数的方法的文章就介绍到这了,更多相关Android studio 运行main 函数内容请搜索呐喊教程以前的文章或继续浏览下面的相关文章希望大家以后多多支持呐喊教程!

声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:notice#nhooo.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。