這篇文章運(yùn)用簡(jiǎn)單易懂的例子給大家介紹java怎么判斷數(shù)組是否包含指定元素,代碼非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),臺(tái)兒企業(yè)網(wǎng)站建設(shè),臺(tái)兒品牌網(wǎng)站建設(shè),網(wǎng)站定制,臺(tái)兒網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷,網(wǎng)絡(luò)優(yōu)化,臺(tái)兒網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。
一:使用List
public static boolean useList(String[] arr, String targetValue) { return Arrays.asList(arr).contains(targetValue); }
二:使用Set
public static boolean useSet(String[] arr, String targetValue) { Setset = new HashSet (Arrays.asList(arr)); return set.contains(targetValue); }
三:使用循環(huán)判斷
public static boolean useLoop(String[] arr, String targetValue) { for(String s: arr){ if(s.equals(targetValue)) return true; } return false; }
四:使用Arrays.binarySearch()
Arrays.binarySearch()
方法只能用于有序數(shù)組?。?!如果數(shù)組無序的話得到的結(jié)果就會(huì)很奇怪。
查找有序數(shù)組中是否包含某個(gè)值的用法如下:
public static boolean useArraysBinarySearch(String[] arr, String targetValue) { int a = Arrays.binarySearch(arr, targetValue); if(a > 0) return true; else return false; }
關(guān)于java判斷數(shù)組是否包含指定元素就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。