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
What is gwt in java?
What is jpa used for?
Do I need to install jre if I have jdk?
Which interceptor is responsible for setting action javabean properties?
What is the meaning of the words public, static and void?
What is a dao layer in java?
Are streams faster than for loops?
I am trying to create a new universal user group. Why can't i? : java security
What is data encapsulation?
What is the resourcebundle class?
What java systems libraries and methods are available for me to use?
What is a uint8?
What is static class in java?
How do I enable java in firefox?
What are the risks in java security? : java security