本篇內容介紹了“Java泛型的使用方法是什么”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
創(chuàng)新互聯(lián)建站專注于珠山網(wǎng)站建設服務及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供珠山營銷型網(wǎng)站建設,珠山網(wǎng)站制作、珠山網(wǎng)頁設計、珠山網(wǎng)站官網(wǎng)定制、小程序定制開發(fā)服務,打造珠山網(wǎng)絡公司原創(chuàng)品牌,更為您提供珠山網(wǎng)站排名全網(wǎng)營銷落地服務。
public class App { public void print(Collection> coll){ System.out.println("I am Collection!!!"); } public void print(ArrayList> arr){ System.out.println("I am ArrayList!!!"); } public void print(Set> arr){ System.out.println("I am Set!!!"); } public void print(HashSet> arr){ System.out.println("I am HashSet!!!"); } public static void main(String[] args) { App app = new App(); Collection coll = new ArrayList<>(Arrays.asList("1","2","3")); app.print(coll); Set set = new HashSet(Arrays.asList("1","2","3")); app.print(set); //運行結果: //I am Collection!!! //I am Set!!! } }
“Java泛型的使用方法是什么”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識可以關注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質量的實用文章!