我有Java地图。 我想获取myType表单映射并将其保存到变量。
例如:
Map<String,myType>
myType mt = ... ;
我该怎么做? 非常感谢!
答案 0 :(得分:0)
希望这可以帮到你:
Map<String,myType> map = new HashMap<String,myType>();
map.put("str",new myType());
Set<Map.Entry<String,myType>> s = map.entrySet();
Iterator<Map.Entry<String,myType>> it = s.iterator();
while(it.hasNext()) {
Map.Entry<String,myType> item = it.next();
myType mt = item.getKey();