Eclipse is saying "HashMap is a raw type" When I use the following code
HashMap = new HashMap();
Any idea what could be wrong?
|
Eclipse will give you that warning when you use a non-Generic See Also: The Generics Lesson in Sun's Java Tutorials. Edit: Actually, here, I'll give an example too: Say I want to map someone's name to their
These are checked at compile-time; the type information is lost at run-time due to how Java implements Generics. |
|||||||||||
|
|
Nothing wrong exactly, but you are missing out on the wonderful world of generics. Depending on what constraints you want to place on the types used in your map, you should add type parameters. For example:
|
|||
|
|
|
That is missing generics, i.e. . If you don't know thise then set the eclipse compiler to java 1.4 |
|||
|
|
|
Try
instead (obviously replacing the key type (String) and value type (Integer)). |
||||
|
|
|
That usually means you're mixing generic code with non-generic code. But as your example wont even compile its rather hard to tell.... |
|||
|
|
|
It's missing the generic type. You should specify the key-value generic pair for your map. For instance, the following is a declaration that instantiates a
|
|||
|
|
|
All of these are valid answers, you could also use the @SurpressWarnings annotation to get the same result, without having to resort to actual generics. ;) |
|||
|
|
final Map<String,String> h = new HashMap<String,String>();. – Tom Hawtin - tackline Jul 28 '10 at 14:09