How to implement Hash Map?

Answer Posted / rice


HashMap is a class that implements Map interface.

HashMap underlined data structure is Hash table.

If we want to describe the group of objects as key ,value
pairs then we go for HashMap class.

key are not duplicated but value can be any thing.

null insertion is possible.

insertion order is not preserved.

HashMap hm=new HashMap();
hm.put(1, "rice");
hm.put(3, "rice");
hm.put(2, "shine");
System.out.println(hm);

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is gwt in java?

656


What is jpa used for?

657


Do I need to install jre if I have jdk?

635


Which interceptor is responsible for setting action javabean properties?

601


What is the meaning of the words public, static and void?

620






What is a dao layer in java?

612


Are streams faster than for loops?

639


I am trying to create a new universal user group. Why can't i? : java security

685


What is data encapsulation?

704


What is the resourcebundle class?

679


What java systems libraries and methods are available for me to use?

606


What is a uint8?

665


What is static class in java?

671


How do I enable java in firefox?

702


What are the risks in java security? : java security

616