I want default Map to use all HashMaps. key can be String, integer or any data type Value can be String, Integer ..any data type.
How to use Map in jdk1.5.
|
I want default Map to use all HashMaps. key can be String, integer or any data type Value can be String, Integer ..any data type. How to use Map in jdk1.5. |
|||
|
Starting with version 1.5 the Java language includes Generics as a way to add type safety to various collection classes. This means that you have to declare what types a collection will store using the "pointy braces" notation, e.g Note also that the Map type is an interface and the HashMap type is a concrete class, so typically you declare variables to be of an interface type and the contained instances to be specific classes. This way you can change your mind about the implementing class without having to change the way the data structure is accessed. For example:
Note that you can also choose not to use the type parameterization but the compiler will probably warn you. Additionally, you can use the
You can also use the
|
|||
|
|
HashMap<Object, Object>. – Thilo Sep 13 '11 at 3:01