vote up 4 vote down star

I am trying to compile the following code:

private String dataToString(){
    Map data = (HashMap<MyClass.Key, String>) getData();
    String toString = "";
    for( MyClass.Key key: data.keySet() ){
        toString += key.toString() + ": " + data.get( key );
    return toString;
}

I get an error in the for line that says:

incompatible types
found : java.lang.Object
required: MyClass.Key

The getData() method returns an Object (but in this case the Object returned has the HashMap structure). MyClass.Key is an enum that I have created for the purposes of my application (in another class file - MyClass).

When I created a foreach loop with the same structure in MyClass.java, I did not encounter this problem.

What am I doing wrong?

flag

There no need to cast getData() to a HashMap when you're just going to assign it to a Map. Rather cast it a Map. What if getData() returns a non-HashMap (like a TreeMap)? – Steve Kuo Jan 15 at 19:57
I actually left out some information here...getData() is actually getData(String key), where key specifies the desired Object I wish to get. So since I know the Object I am getting, I know exactly what I should cast it to. – Blue Jan 15 at 20:00

4 Answers

vote up 12 vote down check

Change:

Map data = (HashMap<MyClass.Key, String>) getData();

to

Map<MyClass.Key, String> data = (HashMap<MyClass.Key, String>) getData();

The problem is that data.keySet() returns a Collection<Object> if data is just a Map. Once you make it generic, keySet() will return a Collection<MyClass.Key>. Even better... iterate over the entrySet(), which will be a Collection<MyClass.Key, String>. It avoids the extra hash lookups.

link|flag
Thanks! Can you explain why that fixes it? – Blue Jan 15 at 19:34
Because the way you declared it, Map data, declares data as a Map of unknown type, so keySet() returns Object. Making the change tells the compiler that the keys are MyClass.Key, not Object. – Paul Tomblin Jan 15 at 19:39
When you assign getData to just Map data you're actually assigning it to Map<Object, Object> by explicitly defining it as Map<MyClass.Key, String> data you allow the foreach loop to retain knowledge of what type the key is. – Ryan Ahearn Jan 15 at 19:39
-1 entrySet() is much better than this. – cletus Jan 15 at 20:57
@cletus, true, but that was not a problem in this question. – Peter Štibraný Jan 15 at 21:01
show 1 more comment
vote up 2 vote down

Motlin's answer is correct.

I have two notes...

1) Don't use toString += ..., but use StringBuilder instead and append data to it.

2) Cast which Martin suggested will give you unchecked warning, which you won't be able to get rid of, because it is really unsafe.

Another way, without warning (and with StringBuilder):

private String dataToString(){
    Map<?, ?> data = (Map<?, ?>) getData();
    StringBuilder toString = new StringBuilder();
    for (Object key: data.keySet()) {
        toString.append(key.toString());
        toString.append(": ");
        toString.append(data.get(key));
    }
    return toString.toString();
}

This works, because toString method which you call on key is defined in Object class, so you don't need casting at all.

Using entrySet is even better way, as it doesn't need to do another lookup in map.

link|flag
You can get rid of the warning with @SuppressWarning("unchecked") – Ryan Ahearn Jan 15 at 19:42
That's just hiding problems, not really fixing them. @SuppressWarning("unchecked") should be used with GREAT caution. – Peter Štibraný Jan 15 at 19:43
vote up 2 vote down

You could grab the entrySet instead, to avoid needing the key class:

private String dataToString(){    
    Map data = (HashMap<MyClass.Key, String>) getData();    
    String toString = "";    
    for( Map.Entry entry: data.entrySet() ) {        
        toString += entry.getKey() + ": " + entry.getValue();
    }    
    return toString;
}
link|flag
Iterating through the entrySet is more efficient than going through the keySet, even though I need to output the names of the keys as well? – Blue Jan 15 at 19:55
The entrySet is more efficient because you don't have to do a lookup on every key. – mmyers Jan 15 at 19:58
@Blue - way more efficient BECAUSE you're using both key and value. – Paul Tomblin Jan 15 at 20:19
vote up 11 vote down

A slightly more efficient way to do this:

  Map<MyClass.Key, String> data = (HashMap<MyClass.Key, String>) getData(); 
  StringBuffer sb = new StringBuffer();
  for (Map.Entry<MyClass.Key,String> entry : data.entrySet()) {
       sb.append(entry.key());
       sb.append(": ");
       sb.append(entry.value());
   }
   return sb.toString();

If at all possible, define "getData" so you don't need the cast.

link|flag
Upvoted this since .entrySet() is the most efficient way of iterating through Map and it holds original references to the Map so if you alter the Entry you alter the actual map and so on. It's also very convenient. – Esko Jan 15 at 19:50
I would, but getData() is used all over this project as well as others, so it's best to leave it as is (returning an Object). – Blue Jan 15 at 19:53
+1, you should definitely change getData() to return Map<MyClass.Key, String>. It will not break older code. – Motlin Jan 15 at 20:06
+1 entrySet() is better than keySet() plus key lookups. – cletus Jan 15 at 20:57

Your Answer

Get an OpenID
or

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