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 函数内容请搜索好吧啦网以前的文章或继续浏览下面的相关文章希望大家以后多多支持好吧啦网!
相关文章:
1. JXTA Java标准版本 2.3.7 发布2. JS实现手写 forEach算法示例3. PHP设计模式之迭代器模式浅析4. 用css截取字符的几种方法详解(css排版隐藏溢出文本)5. Spring FreeMarker整合Struts2过程详解6. Android Studio3.6新特性之视图绑定ViewBinding使用指南7. Pycharm中安装wordcloud等库失败问题及终端通过pip安装的Python库如何添加到Pycharm解释器中(推荐)8. python b站视频下载的五种版本9. ASP.NET MVC使用正则表达式验证手机号码10. vue学习笔记之slot插槽用法实例分析

网公网安备