前言
創(chuàng)新互聯(lián)建站專注于企業(yè)營銷型網(wǎng)站建設(shè)、網(wǎng)站重做改版、建德網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5網(wǎng)站設(shè)計(jì)、商城系統(tǒng)網(wǎng)站開發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)營銷網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為建德等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
本文主要給大家簡單介紹下,如何使用apache commons以及guava的類庫來計(jì)算集合的交差并集。分享出來供大家參考學(xué)習(xí),下面話不多說了,來一起看看詳細(xì)的介紹吧。
maven
com.google.guava guava 22.0 org.apache.commons commons-collections4 4.1
guava
//交集 SetintersectionSet = Sets.intersection(set1, set2); //差集 Set subtractSet = Sets.difference(set1, set2); //并集 Set unionSet = Sets.union(set1, set2);
commons-collection4
//交集 CollectionintersectionSet = CollectionUtils.intersection(set1, set2); //差集 Collection subtractSet = CollectionUtils.subtract(set1, set2); //并集 Collection unionSet = CollectionUtils.union(set1, set2);
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作能帶來一定的幫助,如果有疑問大家可以留言交流,謝謝大家對創(chuàng)新互聯(lián)的支持。