华域联盟 Andriod Android studio 运行main 函数的方法

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 函数内容请搜索华域联盟以前的文章或继续浏览下面的相关文章希望大家以后多多支持华域联盟!

本文由 华域联盟 原创撰写:华域联盟 » Android studio 运行main 函数的方法

转载请保留出处和原文链接:https://www.cnhackhy.com/108774.htm

本文来自网络,不代表华域联盟立场,转载请注明出处。

作者: sterben

Android实现图片滚动效果

发表回复

联系我们

联系我们

2551209778

在线咨询: QQ交谈

邮箱: [email protected]

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们