Here, we will create a map using the HashMap collection. The HashMap collection stores elements in key/value pairs. It uses hash code to store elements and return a map. Then we will add elements to the HashMap collection using the "+" operator and printed the updated HashMap collection.
Program/Source Code:
The source code to add elements to the HashMap collection is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
Output:
Explanation:
Here, we used an object-oriented approach to create the program. And, we imported Collection classes using the below statement,
And, we also created a singleton object Sample and defined the main() function. The main() function is the entry point for the program.
In the main() function, we created a HashMap collection students. The students collection contains student id and student name. Then we added elements to the students HashMap using the "+" operator and printed the updated collection on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer