後端:Java 8 中的 Map 實用操做,學習下!

  • merge() 怎麼用?程序員

  • merge() 簡介編程

  • 使用場景app

  • 其餘函數式編程

  • 總結函數

Java 8最大的特性無異於更多地面向函數,有時約會了lambda等,能夠更好地進行函數式編程。
工具

前段時間無心間發現了map.merge()方法,感受仍是很好用的,此文簡單作一些相關介紹。首先咱們先看一個例子。網站

merge() 怎麼用?

假設咱們有這麼一段業務邏輯,我有一個學生成績對象的列表,對象包含學生姓名,科目,科目分數三個屬性,要求求得每一個學生的總成績。ui

加入列表以下:this

private List<StudentScore> buildATestList() {
    List<StudentScore> studentScoreList = new ArrayList<>();
    StudentScore studentScore1 = new StudentScore() {
   
   {
        setStuName("張三");
        setSubject("語文");
        setScore(70);
    }};
    StudentScore studentScore2 = new StudentScore() {
   
   {
        setStuName("張三");
        setSubject("數學");
        setScore(80);
    }};
    StudentScore studentScore3 = new StudentScore() {
   
   {
        setStuName("張三");
        setSubject("英語");
        setScore(65);
    }};
    StudentScore studentScore4 = new StudentScore() {
   
   {
        setStuName("李四");
        setSubject("語文");
        setScore(68);
    }};
    StudentScore studentScore5 = new StudentScore() {
   
   {
        setStuName("李四");
        setSubject("數學");
        setScore(70);
    }};
    StudentScore studentScore6 = new StudentScore() {
   
   {
        setStuName("李四");
        setSubject("英語");
        setScore(90);
    }};
    StudentScore studentScore7 = new StudentScore() {
   
   {
        setStuName("王五");
        setSubject("語文");
        setScore(80);
    }};
    StudentScore studentScore8 = new StudentScore() {
   
   {
        setStuName("王五");
        setSubject("數學");
        setScore(85);
    }};
    StudentScore studentScore9 = new StudentScore() {
   
   {
        setStuName("王五");
        setSubject("英語");
        setScore(70);
    }};

    studentScoreList.add(studentScore1);
    studentScoreList.add(studentScore2);
    studentScoreList.add(studentScore3);
    studentScoreList.add(studentScore4);
    studentScoreList.add(studentScore5);
    studentScoreList.add(studentScore6);
    studentScoreList.add(studentScore7);
    studentScoreList.add(studentScore8);
    studentScoreList.add(studentScore9);

    return studentScoreList;
}

咱們先看一下常規作法:spa

ObjectMapper objectMapper = new ObjectMapper();
List<StudentScore> studentScoreList = buildATestList();

Map<String, Integer> studentScoreMap = new HashMap<>();
studentScoreList.forEach(studentScore -> {
    if (studentScoreMap.containsKey(studentScore.getStuName())) {
        studentScoreMap.put(studentScore.getStuName(), 
                            studentScoreMap.get(studentScore.getStuName()) + studentScore.getScore());
    } else {
        studentScoreMap.put(studentScore.getStuName(), studentScore.getScore());
    }
});

System.out.println(objectMapper.writeValueAsString(studentScoreMap));

// 結果以下:
// {"李四":228,"張三":215,"王五":235}

而後再看一下merge()是怎麼作的:

Map<String, Integer> studentScoreMap2 = new HashMap<>();
studentScoreList.forEach(studentScore -> studentScoreMap2.merge(
  studentScore.getStuName(),
  studentScore.getScore(),
  Integer::sum));

System.out.println(objectMapper.writeValueAsString(studentScoreMap2));

// 結果以下:
// {"李四":228,"張三":215,"王五":235}

merge() 簡介

merge() 能夠這麼理解:不斷新的值賦值到key(若是不存在)或更新給定的key值對應的值,其源碼以下:

default V merge(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFunction) {
    Objects.requireNonNull(remappingFunction);
    Objects.requireNonNull(value);
    V oldValue = this.get(key);
    V newValue = oldValue == null ? value : remappingFunction.apply(oldValue, value);
    if (newValue == null) {
        this.remove(key);
    } else {
        this.put(key, newValue);
    }

    return newValue;
}

咱們能夠看到原理也是很簡單的,該方法接收三個參數,一個鍵值,一個值,一個remappingFunction,若是給定的鍵不存在,它就變成了put(key, value)

可是,若是key已經存在一些值,咱們remappingFunction能夠選擇合併的方式,而後將合併獲得的newValue賦值給原先的key。

使用場景

這個使用場景相對來講仍是比較多的,某種分組求和這類的操做,雖然stream中有相關groupingBy()方法,可是若是你想在循環中作一些其餘操做的時候,merge()仍是一個挺不錯的選擇的。

其餘

除了merge()方法以外,我還看到了一些的Java 8中map相關的其餘方法,好比putIfAbsent, ,compute()computeIfAbsent()computeIfPresent這些方法咱們看名字應該就知道是什麼意思了。

故此就不作過多介紹了,研究的能夠簡單閱讀一下原始碼(都仍是挺易懂的)。

這裏咱們貼一下compute()(Map.class)的源碼,其返回值是計算後獲得的新值:

default V compute(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
    Objects.requireNonNull(remappingFunction);
    V oldValue = this.get(key);
    V newValue = remappingFunction.apply(key, oldValue);
    if (newValue == null) {
        if (oldValue == null && !this.containsKey(key)) {
            return null;
        } else {
            this.remove(key);
            return null;
        }
    } else {
        this.put(key, newValue);
        return newValue;
    }
}

總結

本文簡單介紹了一下Map.merge()的方法,另外,Java 8中的HashMap實現方法使用了TreeNode和紅黑樹,在源碼閱讀上可能有一點缺點,不過原理上仍是類似的,compute()同理。

IT技術分享社區

我的博客網站:https://programmerblog.xyz

文章推薦程序員效率:畫流程圖經常使用的工具程序員效率:整理經常使用的在線筆記軟件遠程辦公:經常使用的遠程協助軟件,你都知道嗎?51單片機程序下載、ISP及串口基礎知識硬件:斷路器、接觸器、繼電器基礎知識

相關文章
相關標籤/搜索