why do i get this exception?
Map myHash = null myHash = (HashMap)Collections.synchronizedMap(new HashMap());
If i try to use this hashmap, i get java.lang.ClassCastException
|
|
|
Because Collections.synchronizedMap() does not return a HashMap. Correct way should be: Map mySyncedMap = Collections.synchronizedMap(new HashMap()); (or any other map instead of HashMap) |
|||
|
|
|
Because It returns some other kind of You have to use the |
|||
|
|