Abdul D.
—How do I directly initialize a HashMap
in a literal way in Java?
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()
:
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:
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.
Tasty treats for web developers brought to you by Sentry. Get tips and tricks from Wes Bos and Scott Tolinski.
SEE EPISODESConsidered “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.