Java HashMap

In this tutorial, we will learn about the Java HashMap class and its methods with the help of examples.

The HashMap class of the Java collections framework provides the hash table implementation of the Map interface.

Java集合框架的HashMap类提供Map接口的哈希表实现。


Create a HashMap

In order to create a hash map, we must import the java.util.HashMap package first. Once we import the package, here is how we can create hashmaps in Java.

为了创建哈希映射,我们必须首先导入java.util.HashMap包。导入程序包后,可以使用以下方法在Java中创建HashMap

// HashMap creation with 8 capacity and 0.6 load factor
HashMap<Key, Value> numbers = new HashMap<>(8, 0.6f);

In the above code, we have created a hashmap named numbers.

Here,

  • Key - a unique identifier used to associate each element (value) in a map
  • Value - elements associated by keys in a map

Notice the part new HashMap<>(8, 0.6). Here, the first parameter is capacity and the second parameter is loadFactor.

  • capacity - The capacity of this hash map is 8. Meaning, it can store 8 entries.
  • loadFactor - The load factor of this hashmap is 0.6. This means, whenever our hash table is filled by 60%, the entries are moved to a new hash table of double the size of the original hash table.

Default capacity and load factor

It's possible to create a hashmap without defining its capacity and load factor. For example,

// HashMap with default capacity and load factor
HashMap<Key, Value> numbers1 = new HashMap<>();

By default,

  • the capacity of the hash map will be 16
  • the load factor will be 0.75

Creating HashMap from Other Maps

Here is how we can create a hashmap containing all the elements of other maps.

package com.programiz.hashmap;

import java.util.HashMap;

public class CreateHashMap {
    
    public static void main(String[] args) {
        
        // Creating a hashmap of even numbers
        HashMap<String, Integer> evenNumbers = new HashMap<>();
        evenNumbers.put("Two", 2);
        evenNumbers.put("Four", 4);
        System.out.println("HashMap1: " + evenNumbers);

        // Creating a hash map from other hashmap
        HashMap<String, Integer> numbers = new HashMap<>(evenNumbers);
        numbers.put("Three", 3);
        System.out.println("HashMap2: " + numbers);
    }
}

Output

HashMap1: {Four=4, Two=2}
HashMap2: {Two=2, Three=3, Four=4}

Methods of HashMap

The HashMap class provides various methods that allow us to perform various operations on the map.

HashMap类提供了各种方法,可让其在map上执行各种操作


Insert Elements to HashMap

  • put() - inserts the specified key/value mapping to the map
  • 将指定的键/值映射插入到map中
  • putAll() - inserts all the entries from specified map to this map
  • 将指定映射中的所有条目插入到map中
  • putIfAbsent() - inserts the specified key/value mapping to the map if the specified key is not present in the map
  • 如果map中不存在指定的键,则将指定的键/值映射插入到map中

For example,

package com.programiz.hashmap;

import java.util.HashMap;

public class InsertElement {
    
    public static void main(String[] args) {
        
        // Creating HashMap of even numbers
        HashMap<String, Integer> evenNumbers = new HashMap<>();

        // Using put()
        evenNumbers.put("Two", 2);
        evenNumbers.put("Four", 4);

        // Using putIfAbsent()
        evenNumbers.putIfAbsent("Six", 6);
        System.out.println("HashMap of even numbers: " + evenNumbers);

        //Creating HashMap of numbers
        HashMap<String, Integer> numbers = new HashMap<>();
        numbers.put("One", 1);

        // Using putAll()
        numbers.putAll(evenNumbers);
        System.out.println("HashMap of numbers: " + numbers);
    }
}

Output

HashMap of even numbers: {Six=6, Four=4, Two=2}
HashMap of numbers: {Six=6, One=1, Four=4, Two=2}

Access HashMap Elements

1. Using entrySet(), keySet() and values()

  • entrySet() - returns a set of all the key/value mapping of the map
  • 返回map中所有键/值的集合
  • keySet() - returns a set of all the keys of the map
  • 返回map中所有键的集合
  • values() - returns a set of all the values of the map
  • 返回map中所有值的集合

For example,

package com.programiz.hashmap;

import java.util.HashMap;

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

        numbers.put("One", 1);
        numbers.put("Two", 2);
        numbers.put("Three", 3);
        System.out.println("HashMap: " + numbers);

        // Using entrySet()
        System.out.println("Key/Value mappings: " + numbers.entrySet());

        // Using keySet()
        System.out.println("Keys: " + numbers.keySet());

        // Using values()
        System.out.println("Values: " + numbers.values());
    }
}

Output

HashMap: {One=1, Two=2, Three=3}
Key/Value mappings: [One=1, Two=2, Three=3]
Keys: [One, Two, Three]
Values: [1, 2, 3]

2. Using get() and getOrDefault()

  • get() - Returns the value associated with the specified key. Returns null if the key is not found.
  • 返回与指定键关联的值。如果找不到键,则返回null
  • getOrDefault() - Returns the value associated with the specified key. Returns the specified default value if the key is not found.
  • 返回与指定键关联的值。如果找不到键,则返回指定的默认值

For example,

package com.programiz.hashmap;

import java.util.HashMap;

public class GetAndGetOrDefault {
    
    public static void main(String[] args) {

        HashMap<String, Integer> numbers = new HashMap<>();
        numbers.put("One", 1);
        numbers.put("Two", 2);
        numbers.put("Three", 3);
        System.out.println("HashMap: " + numbers);

        // Using get()
        int value1 = numbers.get("Three");
        System.out.println("Returned Number: " + value1);

        // Using getOrDefault()
        int value2 = numbers.getOrDefault("Five", 5);
        System.out.println("Returned Number: " + value2);
    }
}

Output

HashMap: {One=1, Two=2, Three=3}
Returned Number: 3
Returned Number: 5

Remove Elements

  • remove(key) - returns and removes the entry associated with the specified key from the map
  • 返回并从map中删除与指定键相关联的条目
  • remove(key, value) - removes the entry from the map only if the specified key mapped to the specified value and return a boolean value
  • 仅在将指定键映射到指定值并返回布尔值时,才能从map中删除条目

For example,

package com.programiz.hashmap;

import java.util.HashMap;

public class RemoveElements {
    
    public static void main(String[] args) {

        HashMap<String, Integer> numbers = new HashMap<>();
        numbers.put("One", 1);
        numbers.put("Two", 2);
        numbers.put("Three", 3);
        System.out.println("HashMap: " + numbers);

        // remove method with single parameter
        int value = numbers.remove("Two");
        System.out.println("Removed value: " + value);

        // remove method with two parameters
        boolean result = numbers.remove("Three", 3);
        System.out.println("Is the entry Three removed? " + result);

        System.out.println("Updated HashMap: " + numbers);
    }
}

Output

HashMap: {One=1, Two=2, Three=3}
Removed value: 2
Is the entry Three removed? True
Updated HashMap: {One=1}

Replace Elements

  • replace(key, value) - replaces the value associated with the specified key by a new value
  • 用新值替换与指定键关联的值
  • replace(key, old, new) - replaces the old value with the new value only if old value is already associated with the specified key
  • 仅当旧值已与指定键相关联时,才用新值替换旧值
  • replaceAll(function) - replaces each value of the map with the result of the specified function
  • 将map中的每个值替换为指定函数的结果

For example,

package com.programiz.hashmap;

import java.util.HashMap;

public class ReplaceElements {
    
    public static void main(String[] args) {

        HashMap<String, Integer> numbers = new HashMap<>();
        numbers.put("First", 1);
        numbers.put("Second", 2);
        numbers.put("Third", 3);
        System.out.println("Original HashMap: " + numbers);

        // Using replace()
        numbers.replace("Second", 22);
        numbers.replace("Third", 3, 33);
        System.out.println("HashMap using replace(): " + numbers);

        // Using replaceAll()
        numbers.replaceAll((key, oldValue) -> oldValue + 2);
        System.out.println("HashMap using replaceAll(): " + numbers);
    }
}

Output

Original HashMap: {Second=2, Third=3, First=1}
HashMap using replace: {Second=22, Third=33, First=1}
HashMap using replaceAll: {Second=24, Third=35, First=3}

In the above program notice the statement

numbers.replaceAll((key, oldValue) -> oldValue + 2);

Here, the method accesses all the entries of the map. It then replaces all the values with the new values provided by the lambda expression.

这里,该方法访问map的所有条目。然后,它将所有值替换为lambda表达式提供的新值


Recompute Values

1. Using compute() Method

  • compute() - Computes a new value using the specified function. It then associates the computed value to the specified key.

    使用指定的函数计算新值。然后,它将计算的值与指定的键相关联

  • computeIfAbsent() - If the specified key is not mapped to any value, the method will compute a new value using the specified function. It then associates the new value with the key.

    如果指定的键未映射到任何值,则该方法将使用指定的函数计算新值。然后,它将新值与键关联

  • computeIfPresent() - If the specified key is already mapped to any value, this method will compute a new value using the specified function. It then associates the new value with the key.

    如果指定的键已经映射到任何值,则此方法将使用指定的函数计算新值。然后,它将新值与键关联

For example,

package com.programiz.hashmap;
    
import java.util.HashMap;

public class ComputeMethod {
    
    public static void main(String[] args) {

        HashMap<String, Integer> numbers = new HashMap<>();
        numbers.put("First", 1);
        numbers.put("Second", 2);
        System.out.println("Original HashMap: " + numbers);

        // Using compute()
        numbers.compute("First", (key, oldValue) -> oldValue + 2);
        numbers.compute("Second", (key, oldValue) -> oldValue + 1);
        System.out.println("HashMap using compute(): " + numbers);

        // Using computeIfAbsent()
        numbers.computeIfAbsent("Three", key -> 5);
        System.out.println("HashMap using computeIfAbsent(): " + numbers);

        // Using computeIfPresent()
        numbers.computeIfPresent("Second", (key, oldValue) -> oldValue * 2);
        System.out.println("HashMap using computeIfPresent(): " + numbers);
    }
}

Output

Original HashMap: {Second=2, First=1}
HashMap using compute(): {Second=3, First=3}
HashMap using computeIfAbsent(): {Second=3 First=3, Three=5}
HashMap using computeIfPresent(): {Second=6, First=3, three=5}

In the above example, we have recomputed the values of the map using the compute() method.

Here, we have used lambda expressions as method arguments to recompute the values.

使用lambda表达式作为方法参数来重新计算值


2. Using merge() Method

The merge() method associates the specified value to the specified key if the specified key is not already associated.

如果指定的键尚未关联,则merge()方法会将指定的值与指定的键关联

However, if the specified key is already associated with a value, it will merge the new specified value with the existing old value. For example,

但是,如果指定的键已经与某个值相关联,它将把新的指定值与现有的旧值合并。

package com.programiz.hashmap;

import java.util.HashMap;

public class MergeMethod {
    
    public static void main(String[] args) {

        HashMap<String, Integer> numbers = new HashMap<>();
        numbers.put("First", 1);
        numbers.put("Second", 2);
        System.out.println("Original HashMap: " + numbers);

        // Using merge() Method
        numbers.merge("First", 4, (oldValue, newValue) -> oldValue + newValue);
        System.out.println("New HashMap: " + numbers);
    }
}

Output

Original HashMap: {Second=2, First=1}
New HashMap: {Second=2, First=5}

In the above example, the merge() method takes 3 parameters: key, newValue and a lambda expression (that computes the new merged value).

merge()方法采用3个参数: key, newValue和lambda表达式(用于计算新的合并值)


Other Methods of HashMap

Method Description
clear() Removes all the entries from the map
containsKey() Checks if the map contains the specified key and returns a boolean value
containsValue() Checks if the map contains the specified value and returns a boolean value
size() Returns the size of the map
isEmpty() Checks if the map is empty and returns a boolean value

Iterate Through a HashMap

In a HashMap, we can

  • iterate through its keys
  • iterate through its values
  • iterate through its keys/values

1. Using the forEach loop

package com.programiz.hashmap;

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

public class ForEachLoop {
    
    public static void main(String[] args) {

        // Creating a HashMap
        HashMap<String, Integer> numbers = new HashMap<>();
        numbers.put("One", 1);
        numbers.put("Two", 2);
        numbers.put("Three", 3);
        System.out.println("HashMap: " + numbers);

        // Accessing the key/value pair
        System.out.print("Entries: ");
        for(Entry<String, Integer> entry: numbers.entrySet()) {
            System.out.print(entry);
            System.out.print(", ");
        }

        // Accessing the key
        System.out.print("\nKeys: ");
        for(String key: numbers.keySet()) {
            System.out.print(key);
            System.out.print(", ");
        }

        // Accessing the value
        System.out.print("\nValues: ");
        for(Integer value: numbers.values()) {
            System.out.print(value);
            System.out.print(", ");
        }
    }
}

Output

HashMap: {One=1, Two=2, Three=3}
Entries: One=1, Two=2, Three=3,
Keys: One, Two, Three,
Values: 1, 2, 3,

In the above program, note that we have imported the java.util.Map.Entry package. Here, Map.Entry is the nested class of the Map interface.

Map.Entry是Map接口的嵌套类

This nested class returns a view (elements) of the map.

该嵌套类返回map的视图(元素)


2. Using iterator() Method

It is also possible to iterate a HashMap using the iterator() method. In order to use this method, we must import the java.util.Iterator package.

也可以使用iterator()方法来迭代HashMap。为了使用此方法我们必须导入java.util.iterator包

package com.programiz.hashmap;

import java.util.HashMap;
import java.util.Iterator;
import java.util.Map.Entry;

public class IteratorMethod {
    
    public static void main(String[] args) {
        // Creating a HashMap
        HashMap<String, Integer> numbers = new HashMap<>();
        numbers.put("One", 1);
        numbers.put("Two", 2);
        numbers.put("Three", 3);
        System.out.println("HashMap: " + numbers);

        // Creating an object of Iterator
        Iterator<Entry<String, Integer>> iterate1 = numbers.entrySet().iterator();

        // Accessing the Key/Value pair
        System.out.print("Entries: ");
        while(iterate1.hasNext()) {
            System.out.print(iterate1.next());
            System.out.print(", ");
        }

        // Accessing the key
        Iterator<String> iterate2 = numbers.keySet().iterator();
        System.out.print("\nKeys: ");
        while(iterate2.hasNext()) {
            System.out.print(iterate2.next());
            System.out.print(", ");
        }

        // Accessing the value
        Iterator<Integer> iterate3 = numbers.values().iterator();
         System.out.print("\nValues: ");
        while(iterate3.hasNext()) {
            System.out.print(iterate3.next());
            System.out.print(", ");
        }
    }
}

Output

HashMap: {One=1, Two=2, Three=3}
Entries: One=1, Two=2, Three=3,
Keys: One, Two, Three,
Values: 1, 2, 3,

In the above program, note that we have imported the java.util.Map.Entry package. Here, Map.Entry is the nested class of the Map interface.

Map.Entry是Map接口的嵌套类

This nested class returns a view (elements) of the map.

该嵌套类返回map的视图(元素)

posted @ 2020-06-28 15:40  PrimerPlus  阅读(194)  评论(0编辑  收藏  举报