【Java必修课】各种集合类的合并(数组、List、Set、Map)1 介绍
集合类可谓是学习必知、编程必⽤、⾯试必会的,⽽且集合的操作⼗分重要;本⽂主要讲解如何合并集合类,如合并两个数组,合并两个List等。通过例⼦讲解⼏种不同的⽅法,有JDK原⽣的⽅法,还有使⽤第三库的⽅法。
2 第三⽅库
引⼊⼗分常⽤的优秀的第三⽅库Guava和Apache Commons;通过配置l如下:
<dependency>
<groupId&le.guava</groupId>
<artifactId>guava</artifactId>
<version>28.1-jre</version>
</dependency>
<dependency>
<groupId>org.apachemons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.4</version>
</dependency>
<dependency>
<groupId>org.apachemons</groupId>
<artifactId>commons-exec</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.apachemons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.5</version>
</dependency>
最新版本可以去官⽹搜索查看。
3 数组的合并
数据准备:
String[] arr1 = {"desk", "pen", "cup"};
String[] arr2 = {"phone", "keyboard"};
String[] expected = new String[]{"desk", "pen", "cup", "phone", "keyboard"};
String[] result;
3.1 JDK⽅法
3.1.1 使⽤System.arraycopy
JDK为我们提供了⼀个复制数组的⽅法,这个⽅法参数较多,使⽤不是很灵活,但它是⼀个本地⽅法,效率⾼。代码如下://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);
3.1.2 使⽤Stream
Java 8的Stream提供了转化成数组的⽅法,可以通过将数组转化成Stream,合并Stream后再转化为数组,具体代码如下:
//Stream
result = at(Arrays.stream(arr1), Arrays.stream(arr2))
.toArray(String[]::new);
assertArrayEquals(expected, result);
使⽤的时候要注意Array()的两个⽅法,例⼦中需要使⽤带参数的。
3.2 Guava
Guava提供了类ObjectArrays进⾏数组合并,注意需要指定数组存储的对象的类型,代码如下:
//Guava
result = at(arr1, arr2, String.class);
assertArrayEquals(expected, result);
3.3 Apache Commons
Apache Commons提供了ArrayUtils进⾏合并,代码如下:
//Apache Commons
result = ArrayUtils.addAll(arr1, arr2);
assertArrayEquals(expected, result);
4 List的合并
数据准备:
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<>();
java stream4.1 JDK⽅法
4.1.1 使⽤List.addAll
List接⼝定义了addAll的⽅法,代码如下:
//list.addAll
result.addAll(list1);
result.addAll(list2);
assertEquals(expected, result);
4.1.2 使⽤Stream
过程⼤体相似,合并Stream,然后转化为List,代码如下:
//Stream
result = at(list1.stream(), list2.stream())
.List());
assertEquals(expected, result);
4.2 Guava
Guava提供了将Iterable转化为List的⽅法,代码如下:
//Guava
result = at(list1, list2));
assertEquals(expected, result);
4.3 Apache Commons
Apache Commons的⼯具类ListUtils提供了union()⽅法可以直接合并,代码如下://Apache Commons
result = ListUtils.union(list1, list2);
assertEquals(expected, result);
5 Set的合并
数据准备:
Set<String> set1 = wHashSet("desk", "pen", "cup", "phone", "keyboard");
Set<String> set2 = wHashSet("phone", "keyboard");
Set<String> expected = wHashSet("desk", "pen", "cup", "phone", "keyboard");
Set<String> result = wHashSet();
5.1 JDK⽅法
5.1.1 使⽤Set.addAll
同样,Set接⼝也有addAll()⽅法,代码如下:
//set.addAll
result.addAll(set1);
result.addAll(set2);
assertEquals(expected, result);
5.1.2 使⽤Stream
先合并Stream,再转化成Set,代码如下:
//Stream
result = at(set1.stream(), set2.stream())
.Set());
assertEquals(expected, result);
5.2 Guava
⼀个⽅法搞定,代码如下:
//Guava
result = Sets.union(set1, set2);
assertEquals(expected, result);
5.3 Apache Commons
同样是⼀个⽅法,代码如下:
//Apache Commons
result = SetUtils.union(set1, set2);
assertEquals(expected, result);
6 Map的合并
代码如下:
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 = wHashMap();
6.1 JDK⽅法
6.1.1 使⽤Map.putAll
使⽤Map接⼝提供的putAll()⽅法,代码如下:
//map.putAll
result.putAll(map1);
result.putAll(map2);
assertEquals(expected, result);
6.1.2 使⽤Stream
使⽤Stream进⾏合并Map相对⿇烦⼀些,代码如下:
//Stream
result = Stream.of(map1, map2)
.map(Map::entrySet)
.flatMap(Collection::stream)
.Map(Map.Entry::getKey, Map.Entry::getValue));
assertEquals(expected, result);
6.2 Guava
使⽤builder()⽅法,代码如下:
//Guava
result = ImmutableMap.<String, Integer>builder()
.putAll(map1)
.putAll(map2)
.build();
assertEquals(expected, result);
6.3 Apache Commons
⼀个`merge()⽅法搞定,代码如下:
//Apache Commons
result = (map1, map2);
assertEquals(expected, result);
7 总结
本⽂分别列举了数组、List、Set和Map的合并的多种⽅法,虽然代码简单,理解也容易,但这些⽅法应该熟练掌握。可以收藏⼀下,必要的时间查⼀查。
欢迎关注<;南⽠慢说>,将持续为你更新...
欢迎多多交流。
多读书,多分享;多写作,多整理。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。