您好,登錄后才能下訂單哦!
利用Java怎么獲取集合中相同與不同的元素?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
語法 removeAll(Collection<?> c)
c:包含從列表中移除元素的collection對象。
該方法返回值為boolean對象,如果List集合對象由于調用removeAll方法而發生更改,則返回true,否則返回false。實現代碼如下:
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); } }
運行結果:
_second中不存在于_set中的:[happy, sun, good]
_second中存在于_set中的:[jack]
看完上述內容,你們掌握利用Java怎么獲取集合中相同與不同的元素的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。