Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
That JDK has reached the end of its useful life. Time to upgrade to JDK 6. – duffymo Sep 13 '11 at 2:55
4  
Irrespective of JDK5, I don't understand the question. If you want a HashMap to use any kind of data, you can say HashMap<Object, Object>. – Thilo Sep 13 '11 at 3:01
Thilo, we need to use Map as a reference. Can i use Map<Object,Object> MapA = new HashMap<Object,Object> ?? – poineer Sep 13 '11 at 3:38
@poineer Yes, you can – default locale Sep 13 '11 at 3:44

1 Answer

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 Collection<String>.

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:

Map<Object,Object> m = new HashMap<Object,Object>();

Note that you can also choose not to use the type parameterization but the compiler will probably warn you. Additionally, you can use the ? wildcard to achieve a similar effect:

Map m2 = new HashMap();
Map<?,?> m3 = new HashMap<?,?>();

You can also use the extends keyword in this context to achieve finer grained type control:

Map<? extends Object, ? extends Number> m4 =
    new HashMap<String, Integer>();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.