利用Java怎么獲取集合中相同與不同的元素?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
我們提供的服務(wù)有:網(wǎng)站制作、成都網(wǎng)站設(shè)計、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認證、泰安ssl等。為上千企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的泰安網(wǎng)站制作公司語法 removeAll(Collection> c)
c:包含從列表中移除元素的collection對象。
該方法返回值為boolean對象,如果List集合對象由于調(diào)用removeAll方法而發(fā)生更改,則返回true,否則返回false。實現(xiàn)代碼如下:
import java.util.ArrayList; import java.util.Collection; import java.util.List; public class Test { public static void main(String args[]){ //集合一 List _first=new ArrayList(); _first.add("jim"); _first.add("tom"); _first.add("jack"); //集合二 List _second=new ArrayList(); _second.add("jack"); _second.add("happy"); _second.add("sun"); _second.add("good"); Collection exists=new ArrayList(_second); Collection notexists=new ArrayList(_second); exists.removeAll(_first); System.out.println("_second中不存在于_set中的:"+exists); notexists.removeAll(exists); System.out.println("_second中存在于_set中的:"+notexists); } }
運行結(jié)果:
_second中不存在于_set中的:[happy, sun, good]
_second中存在于_set中的:[jack]
看完上述內(nèi)容,你們掌握利用Java怎么獲取集合中相同與不同的元素的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!