Skip to content

Yet another programming solutions log

Sample bits from programming for the future generations.

Technologies Technologies
  • Algorithms and Data Structures
  • Java Tutorials
  • JUnit Tutorial
  • MongoDB Tutorial
  • Quartz Scheduler Tutorial
  • Spock Framework Tutorial
  • Spring Framework
  • Bash Tutorial
  • Clojure Tutorial
  • Design Patterns
  • Developer’s Tools
  • Productivity
  • About
Expand Search Form

Java Util Map compute(Key, BiFunction)

farenda 2016-06-08 0

java.util.Map.compute(Key, BiFunction)

The method Map.compute(Key, BiFunction) returns the new value associated with the specified key. The value is computed using the given function.

Method signature

The signature of the java.util.Map.compute(Key, BiFunction) method is as follows:

default V compute(
    K key,
    BiFunction<? super K,? super V,? extends V> remappingFunction
)

The method is available since Java 8.

Parameters

  • K key: key with which associate the value,
  • BiFunction remappingFunction: function to compute the value.

Return value

The new value associated with the specified key, or null if none.

Exceptions

  • NullPointerException: when remappingFunction is null or if the specified key is null and this map does not support null keys,
  • UnsupportedOperationException: if the put operation is not supported by this map (optional)
  • ClassCastException: if the class of the specified key or value prevents it from being stored in this map (optional)

Example usage

In the following code we use java.util.Map.compute(Key, BiFunction):

package com.farenda.java.util;

import java.util.HashMap;
import java.util.Map;

public class MapExamples {

    public static void main(String[] args) {
        Map<Integer,String> nameForId = new HashMap<>();
        nameForId.put(1, "Java");
        nameForId.put(2, "Clojure");
        System.out.println("Original map: " + nameForId);

        // recompute the values:
        nameForId.compute(1, (key, oldVal) -> oldVal.concat("Script"));
        nameForId.compute(2, (key, oldVal) -> oldVal.concat("Script"));
        System.out.println("Recomputed map: " + nameForId);

        // return "null" to remove value:
        nameForId.compute(1, (key, oldVal) -> null);
        // null for nothing does nothing:
        nameForId.compute(3, (key, oldVal) -> null);
        System.out.println("After null: " + nameForId);

        // unchecked exceptions are rethrown:
        try {
            nameForId.compute(1, (key, oldVal) -> {
                throw new RuntimeException("Drakaris!");
            });
        } catch (RuntimeException e) {
            System.out.println("Rethrown: " + e.getMessage());
        }
        System.out.println("Map after exception: " + nameForId);
    }
}

The above code produces the following output:

Original map: {1=Java, 2=Clojure}
Recomputed map: {1=JavaScript, 2=ClojureScript}
After null: {2=ClojureScript}
Rethrown: Drakaris!
Map after exception: {2=ClojureScript}

References:

  • Oracle’s Java 8 API
Share with the World!
Categories Java Tags java, java-util, java8
Previous: Java Time Clock tickSeconds(ZoneId)
Next: Java Util Map computeIfAbsent(key,Function)

Recent Posts

  • Java 8 Date Time concepts
  • Maven dependency to local JAR
  • Caesar cipher in Java
  • Java casting trick
  • Java 8 flatMap practical example
  • Linked List – remove element
  • Linked List – insert element at position
  • Linked List add element at the end
  • Create Java Streams
  • Floyd Cycle detection in Java

Pages

  • About Farenda
  • Algorithms and Data Structures
  • Bash Tutorial
  • Bean Validation Tutorial
  • Clojure Tutorial
  • Design Patterns
  • Java 8 Streams and Lambda Expressions Tutorial
  • Java Basics Tutorial
  • Java Collections Tutorial
  • Java Concurrency Tutorial
  • Java IO Tutorial
  • Java Tutorials
  • Java Util Tutorial
  • Java XML Tutorial
  • JUnit Tutorial
  • MongoDB Tutorial
  • Quartz Scheduler Tutorial
  • Software Developer’s Tools
  • Spock Framework Tutorial
  • Spring Framework

Tags

algorithms bash bean-validation books clojure design-patterns embedmongo exercises git gof gradle groovy hateoas hsqldb i18n java java-basics java-collections java-concurrency java-io java-lang java-time java-util java-xml java8 java8-files junit linux lists log4j logging maven mongodb performance quartz refactoring regex rest slf4j solid spring spring-boot spring-core sql unit-tests

Yet another programming solutions log © 2021

sponsored