Sentry Answers>Java>

How to directly initialize a HashMap in a literal way in Java

How to directly initialize a HashMap in a literal way in Java

Abdul D.

The Problem

How do I directly initialize a HashMap in a literal way in Java?

The Solution

Unlike some other programming languages, Java does not have built-in syntax for initializing a HashMap in a literal way.

For practical purposes, a HashMap is generally initialized with a constructor and then populated using put():

Click to Copy
Map<String, Integer> map = new HashMap<>(); map.put("Mercury", 1); map.put("Venus", 2); map.put("Earth", 3); map.put("Mars", 4);

Another common way to initialize a HashMap is to use an anonymous class and a HashMap instance initializer block:

Click to Copy
import java.util.HashMap; import java.util.Map; public class Main { public static void main(String[] args) { Map<String, Integer> map = new HashMap<>() {{ put("Mercury", 1); put("Venus", 2); put("Earth", 3); put("Mars", 4); }}; } }

Note: This approach uses an anonymous inner class, which can lead to subtle memory leaks due to the reference to the enclosing instance. It is generally not recommended for production code but is fine for testing.

  • Sentry BlogException Handling in Java (with Real Examples)
  • Syntax.fmListen to the Syntax Podcast
  • Syntax.fm logo
    Listen to the Syntax Podcast

    Tasty treats for web developers brought to you by Sentry. Get tips and tricks from Wes Bos and Scott Tolinski.

    SEE EPISODES

Considered “not bad” by 4 million developers and more than 100,000 organizations worldwide, Sentry provides code-level observability to many of the world’s best-known companies like Disney, Peloton, Cloudflare, Eventbrite, Slack, Supercell, and Rockstar Games. Each month we process billions of exceptions from the most popular products on the internet.

© 2025 • Sentry is a registered Trademark of Functional Software, Inc.