How to do an array of hashmaps?
Posted
by Joren
on Stack Overflow
See other posts from Stack Overflow
or by Joren
Published on 2010-05-08T02:37:09Z
Indexed on
2010/05/08
2:48 UTC
Read the original article
Hit count: 343
This is what I tried to do, but it gives me a warning:
HashMap<String, String>[] responseArray = new HashMap[games.size()];
"Type safety: The expression of type HashMap[] needs unchecked conversion to conform to HashMap[]"
© Stack Overflow or respective owner