Can I use HashMaps in J2ME?
I cannot find much documentation about HashMaps in j2开发者_JS百科me. Does anyone have experience with this? How to create a HashMap?
Map map1 = new HashMap();
should work, right?
Only the Hashtable
is available in Java ME API.
精彩评论