Here, we will create two maps using the HashMap collection. Then we will check HashMap collections are empty or not using the isEmpty() method and print appropriate messages on the console screen.
The HashMap collection stores elements in key/value pairs. It uses hash code to store elements and return a map.
Program/Source Code:
The source code to check a HashMap collection is empty or not 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 checked created HashMaps are empty or not using the isEmpty() method and printed the appropriate message on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer