HashMap replace(K, V) in Java

replace(K, V): This method is available in java.util.HashMap class of Java.

Syntax:

V java.util.HashMap.replace(K key, V value)

This method takes two arguments. This method replaces the entry for the specified key only if it is currently mapped to some value.

Parameters: Two parameters are required for this method.

key: key with which the specified value is associated.

value: value to be associated with the specified key.

Returns: the previous value associated with the specified key, or null if there was no mapping for the key.

Exceptions: NA

Approach

Java

import java.util.HashMap;

public class HashMapreplace {
    public static void main(String[] args) {
        HashMap<String, Integer> hashMap =
new HashMap<String, Integer>();

        hashMap.put("Hello", 1);
        hashMap.put("World", 2);

        String key = "Hello";
        Integer value = 10;
        hashMap.replace(key, value);

        System.out.println(hashMap);

    }
}

Output:

{Hello=10, World=2}


No comments:

Post a Comment