栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 移动开发 > Android

Android studio 运行main 函数的方法

Android 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Android studio 运行main 函数的方法

标题Gradle构建问题

切换到Project工程下.idea/gradle.xml添加属性

图例

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

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/153860.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号