集合類可謂是學習必知、編程必用、面試必會的,並且集合的操做十分重要;本文主要講解如何合併集合類,如合併兩個數組,合併兩個List等。經過例子講解幾種不一樣的方法,有JDK原生的方法,還有使用第三庫的方法。java
引入十分經常使用的優秀的第三方庫Guava
和Apache Commons
;經過配置pom.xml
以下:面試
<dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>28.1-jre</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.4</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-exec</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.5</version> </dependency>
最新版本能夠去官網搜索查看。apache
數據準備:編程
String[] arr1 = {"desk", "pen", "cup"}; String[] arr2 = {"phone", "keyboard"}; String[] expected = new String[]{"desk", "pen", "cup", "phone", "keyboard"}; String[] result;
JDK爲咱們提供了一個複製數組的方法,這個方法參數較多,使用不是很靈活,但它是一個本地方法,效率高。代碼以下:segmentfault
//System.arraycopy result = new String[arr1.length + arr2.length]; System.arraycopy(arr1, 0, result, 0, arr1.length); System.arraycopy(arr2, 0, result, arr1.length, arr2.length); assertArrayEquals(expected, result);
Java 8的Stream
提供了轉化成數組的方法,能夠經過將數組轉化成Stream
,合併Stream
後再轉化爲數組,具體代碼以下:數組
//Stream result = Stream.concat(Arrays.stream(arr1), Arrays.stream(arr2)) .toArray(String[]::new); assertArrayEquals(expected, result);
使用的時候要注意Stream.toArray()
的兩個方法,例子中須要使用帶參數的。工具
Guava
提供了類ObjectArrays
進行數組合並,注意須要指定數組存儲的對象的類型,代碼以下:學習
//Guava result = ObjectArrays.concat(arr1, arr2, String.class); assertArrayEquals(expected, result);
Apache Commons
提供了ArrayUtils
進行合併,代碼以下:ui
//Apache Commons result = ArrayUtils.addAll(arr1, arr2); assertArrayEquals(expected, result);
數據準備:google
List<String> list1 = asList("desk", "pen", "cup"); List<String> list2 = asList("phone", "keyboard"); List<String> expected = asList("desk", "pen", "cup", "phone", "keyboard"); List<String> result = new ArrayList<>();
List
接口定義了addAll
的方法,代碼以下:
//list.addAll result.addAll(list1); result.addAll(list2); assertEquals(expected, result);
過程大致類似,合併Stream
,而後轉化爲List
,代碼以下:
//Stream result = Stream.concat(list1.stream(), list2.stream()) .collect(Collectors.toList()); assertEquals(expected, result);
Guava
提供了將Iterable
轉化爲List
的方法,代碼以下:
//Guava result = Lists.newArrayList(Iterables.concat(list1, list2)); assertEquals(expected, result);
Apache Commons
的工具類ListUtils
提供了union()
方法能夠直接合並,代碼以下:
//Apache Commons result = ListUtils.union(list1, list2); assertEquals(expected, result);
數據準備:
Set<String> set1 = Sets.newHashSet("desk", "pen", "cup", "phone", "keyboard"); Set<String> set2 = Sets.newHashSet("phone", "keyboard"); Set<String> expected = Sets.newHashSet("desk", "pen", "cup", "phone", "keyboard"); Set<String> result = Sets.newHashSet();
一樣,Set
接口也有addAll()
方法,代碼以下:
//set.addAll result.addAll(set1); result.addAll(set2); assertEquals(expected, result);
先合併Stream
,再轉化成Set
,代碼以下:
//Stream result = Stream.concat(set1.stream(), set2.stream()) .collect(Collectors.toSet()); assertEquals(expected, result);
一個方法搞定,代碼以下:
//Guava result = Sets.union(set1, set2); assertEquals(expected, result);
一樣是一個方法,代碼以下:
//Apache Commons result = SetUtils.union(set1, set2); assertEquals(expected, result);
代碼以下:
Map<String, Integer> map1 = ImmutableMap.of("One", 1, "Two", 2); Map<String, Integer> map2 = ImmutableMap.of("Three", 3); Map<String, Integer> expected = ImmutableMap.of("One", 1, "Two", 2, "Three", 3); Map<String, Integer> result = Maps.newHashMap();
使用Map
接口提供的putAll()
方法,代碼以下:
//map.putAll result.putAll(map1); result.putAll(map2); assertEquals(expected, result);
使用Stream
進行合併Map
相對麻煩一些,代碼以下:
//Stream result = Stream.of(map1, map2) .map(Map::entrySet) .flatMap(Collection::stream) .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue)); assertEquals(expected, result);
使用builder()
方法,代碼以下:
//Guava result = ImmutableMap.<String, Integer>builder() .putAll(map1) .putAll(map2) .build(); assertEquals(expected, result);
一個`merge()方法搞定,代碼以下:
//Apache Commons result = MapUtils.merge(map1, map2); assertEquals(expected, result);
本文分別列舉了數組、List
、Set
和Map
的合併的多種方法,雖然代碼簡單,理解也容易,但這些方法應該熟練掌握。能夠收藏一下,必要的時間查一查。
歡迎關注公衆號<南瓜慢說>,將持續爲你更新...
歡迎多多交流。
多讀書,多分享;多寫做,多整理。