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 函數內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!
相關文章: