3 回答

瘋子520520
TA貢獻39條經(jīng)驗 獲得超236個贊
package?factory1; public?class?FactoryDemo1?{ public?static?void?main(String[]?args)?{ if(args.length==0)?{ System.out.println("必須輸入一個要使用的名稱類型!"); System.exit(1); } else{ System.out.println("sfsdhfgd········"); } Fruit?f?=?Factory.getFruitInstance(args[0]); if(f!=null)?{ f.grow(); f.pick(); } else?{ System.out.println("沒有發(fā)現(xiàn)這個類型?。。?); } } }
添加回答
舉報
0/150
提交
取消