真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Java中各種集合類的是怎樣合并的

這篇文章給大家介紹Java中各種集合類的是怎樣合并的,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

創(chuàng)新互聯(lián)公司2013年至今,先為景泰等服務建站,景泰等地企業(yè),進行企業(yè)商務咨詢服務。為景泰企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務解決您的所有建站問題。

1 介紹

集合類可謂是學習必知、編程必用、面試必會的,而且集合的操作十分重要;本文主要講解如何合并集合類,如合并兩個數(shù)組,合并兩個List等。通過例子講解幾種不同的方法,有JDK原生的方法,還有使用第三庫的方法。

Java中各種集合類的是怎樣合并的

2 第三方庫

引入十分常用的優(yōu)秀的第三方庫GuavaApache Commons;通過配置pom.xml如下:


  com.google.guava
  guava
  28.1-jre


  org.apache.commons
  commons-collections4
  4.4


  org.apache.commons
  commons-exec
  1.3


  org.apache.commons
  commons-lang3
  3.5

最新版本可以去官網(wǎng)搜索查看。

3 數(shù)組的合并

數(shù)據(jù)準備:

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為我們提供了一個復制數(shù)組的方法,這個方法參數(shù)較多,使用不是很靈活,但它是一個本地方法,效率高。代碼如下:

//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提供了轉(zhuǎn)化成數(shù)組的方法,可以通過將數(shù)組轉(zhuǎn)化成Stream,合并Stream后再轉(zhuǎn)化為數(shù)組,具體代碼如下:

//Stream
result = Stream.concat(Arrays.stream(arr1), Arrays.stream(arr2))
  .toArray(String[]::new);
assertArrayEquals(expected, result);

使用的時候要注意Stream.toArray()的兩個方法,例子中需要使用帶參數(shù)的。

3.2 Guava

Guava提供了類ObjectArrays進行數(shù)組合并,注意需要指定數(shù)組存儲的對象的類型,代碼如下:

//Guava
result = ObjectArrays.concat(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的合并

數(shù)據(jù)準備:

List list1 = asList("desk", "pen", "cup");
List list2 = asList("phone", "keyboard");
List expected = asList("desk", "pen", "cup", "phone", "keyboard");
List result = new ArrayList<>();

4.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,然后轉(zhuǎn)化為List,代碼如下:

//Stream
result = Stream.concat(list1.stream(), list2.stream())
  .collect(Collectors.toList());
assertEquals(expected, result);

4.2 Guava

Guava提供了將Iterable轉(zhuǎn)化為List的方法,代碼如下:

//Guava
result = Lists.newArrayList(Iterables.concat(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的合并

數(shù)據(jù)準備:

 Set set1 = Sets.newHashSet("desk", "pen", "cup", "phone", "keyboard");
Set set2 = Sets.newHashSet("phone", "keyboard");
Set expected = Sets.newHashSet("desk", "pen", "cup", "phone", "keyboard");
Set result = Sets.newHashSet();

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,再轉(zhuǎn)化成Set,代碼如下:

//Stream
result = Stream.concat(set1.stream(), set2.stream())
  .collect(Collectors.toSet());
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 map1 = ImmutableMap.of("One", 1, "Two", 2);
Map map2 = ImmutableMap.of("Three", 3);
Map expected = ImmutableMap.of("One", 1, "Two", 2, "Three", 3);
Map result = Maps.newHashMap();

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)
  .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
assertEquals(expected, result);

6.2 Guava

使用builder()方法,代碼如下:

//Guava
result = ImmutableMap.builder()
  .putAll(map1)
  .putAll(map2)
  .build();
assertEquals(expected, result);

6.3 Apache Commons

一個`merge()方法搞定,代碼如下:

//Apache Commons
result = MapUtils.merge(map1, map2);
assertEquals(expected, result);

分享題目:Java中各種集合類的是怎樣合并的
本文地址:http://weahome.cn/article/goojpc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部