Answers for "hashmap in java class"

2

hashmap java

private static final Map<Integer, String> map = Map.of(
        1, "one",
        2, "two"
    );
Posted by: Guest on October-31-2021
0

Implementation of HashMap Class in Java map

// Java Program to illustrate the Hashmap Class

// Importing required classes
import java.util.*;

// Main class
public class Main {

	// Main driver method
	public static void main(String[] args)
	{

		// Creating an empty HashMap
		Map<String, Integer> hashmap = new HashMap<>();

		// Inserting entries in the Map
		// using put() method
		hashmap.put("Banana", 100);
		hashmap.put("Orange", 200);
		hashmap.put("Mango", 300);
		hashmap.put("Apple", 400);

		// Iterating over Map
		for (Map.Entry<String, Integer> e : hashmap.entrySet())

			// Printing key-value pairs
			System.out.println(e.getKey() + " "+ e.getValue());
	}
}
Posted by: Guest on May-14-2022

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language