激情久久久_欧美视频区_成人av免费_不卡视频一二三区_欧美精品在欧美一区二区少妇_欧美一区二区三区的

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務器之家 - 編程語言 - Java教程 - java中實現list或set轉map的方法

java中實現list或set轉map的方法

2020-08-01 15:27java教程網 Java教程

這篇文章主要介紹了java中實現list或set轉map的方法的相關資料,需要的朋友可以參考下

java中實現list或set轉map的方法

在開發中我們有時需要將list或set轉換為map(比如對象屬性中的唯一鍵作為map的key,對象作為map的value),一般的想法就是new一個map,然后把list或set中的值一個個push到map中。

類似下面的代碼:

?
1
2
3
4
5
List<String> stringList = Lists.newArrayList("t1", "t2", "t3");
Map<String, String> map = Maps.newHashMapWithExpectedSize(stringList.size());
for (String str : stringList) {
  map.put(str, str);
}

是否還有更優雅的寫法呢?答案是有的。

guava提供了集合(實現了Iterables接口或Iterator接口)轉map的方法,方法定義如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
 
* Returns an immutable map for which the {@link Map#values} are the given
 * elements in the given order, and each key is the product of invoking a
 * supplied function on its corresponding value.
 *
 * @param values the values to use when constructing the {@code Map}
 * @param keyFunction the function used to produce the key for each value
 * @return a map mapping the result of evaluating the function {@code
 *     keyFunction} on each value in the input collection to that value
 * @throws IllegalArgumentException if {@code keyFunction} produces the same
 *     key for more than one value in the input collection
 * @throws NullPointerException if any elements of {@code values} is null, or
 *     if {@code keyFunction} produces {@code null} for any value
 */
public static <K, V> ImmutableMap<K, V> uniqueIndex(
  Iterable<V> values, Function<? super V, K> keyFunction) {
 return uniqueIndex(values.iterator(), keyFunction);
}
 
/**
 * Returns an immutable map for which the {@link Map#values} are the given
 * elements in the given order, and each key is the product of invoking a
 * supplied function on its corresponding value.
 *
 * @param values the values to use when constructing the {@code Map}
 * @param keyFunction the function used to produce the key for each value
 * @return a map mapping the result of evaluating the function {@code
 *     keyFunction} on each value in the input collection to that value
 * @throws IllegalArgumentException if {@code keyFunction} produces the same
 *     key for more than one value in the input collection
 * @throws NullPointerException if any elements of {@code values} is null, or
 *     if {@code keyFunction} produces {@code null} for any value
 * @since 10.0
 */
public static <K, V> ImmutableMap<K, V> uniqueIndex(
  Iterator<V> values, Function<? super V, K> keyFunction) {
 checkNotNull(keyFunction);
 ImmutableMap.Builder<K, V> builder = ImmutableMap.builder();
 while (values.hasNext()) {
  V value = values.next();
  builder.put(keyFunction.apply(value), value);
 }
 return builder.build();
}

這樣我們就可以很方便的進行轉換了,如下:

?
1
2
3
4
5
6
7
List<String> stringList = Lists.newArrayList("t1", "t2", "t3");
Map<String, String> map = Maps.uniqueIndex(stringList, new Function<String, String>() {
  @Override
  public String apply(String input) {
    return input;
  }
});

需要注意的是,如接口注釋所說,如果Function返回的結果產生了重復的key,將會拋出異常。

java8也提供了轉換的方法,這里直接照搬別人博客的代碼:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@Test
public void convert_list_to_map_with_java8_lambda () { 
    
  List<Movie> movies = new ArrayList<Movie>(); 
  movies.add(new Movie(1, "The Shawshank Redemption")); 
  movies.add(new Movie(2, "The Godfather")); 
  
  Map<Integer, Movie> mappedMovies = movies.stream().collect( 
      Collectors.toMap(Movie::getRank, (p) -> p)); 
  
  logger.info(mappedMovies); 
  
  assertTrue(mappedMovies.size() == 2); 
  assertEquals("The Shawshank Redemption", mappedMovies.get(1).getDescription()); 

參考:http://www.zmynmublwnt.cn/article/90553.html

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 99久久免费看精品 | 91av国产在线 | 久久精品亚洲成在人线av网址 | 成人18在线 | 欧美一级淫片免费视频1 | 亚洲va久久久噜噜噜久久男同 | 亚洲成人黄色片 | 国产高清毛片 | 91精品国产乱码久久久久 | 毛片免费网 | 91久久久国产精品 | 久久69精品久久久久久国产越南 | 日韩在线视频一区二区三区 | 黄色a级片视频 | 久久青草影院 | 亚洲视屏在线观看 | 久久久免费 | 97se亚洲综合在线韩国专区福利 | 91久久99热青草国产 | 日本a在线观看 | 牛牛热这里只有精品 | 中文字幕h| 欧美videofree性欧美另类 | 欧美一区二区三区四区电影 | 黄色免费小视频网站 | 亚洲精品欧美二区三区中文字幕 | 国产精品一品二区三区四区18 | 毛片免费看网站 | 欧洲精品视频在线观看 | 免费视频一区 | 夜班护士在线观看 | 久久久久久久免费看 | 国产一国产精品一级毛片 | 久夜草 | 宅男视频在线观看免费 | 欧美视频不卡 | 欧洲成人一区二区 | 色屁屁xxxxⅹ免费视频 | 毛片大全免费 | 99视频网| 黄色av免费 |