首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

遍历地图里面的list

2013-02-24 
遍历map里面的listprivate ArrayListRstPhoto retPhotosprivate ArrayListRestaurant restaurantsMa

遍历map里面的list
private ArrayList<RstPhoto> retPhotos; private ArrayList<Restaurant> restaurants;Map<ArrayList<RstPhoto>, ArrayList<Restaurant>> map_arrary = (Map<ArrayList<RstPhoto>, ArrayList<Restaurant>>) msg.obj;Iterator iter = map_arrary.entrySet().iterator(); while (iter.hasNext()) { Map.Entry entry = (Map.Entry) iter.next(); retPhotos = (ArrayList<RstPhoto>) entry.getKey(); restaurants = (ArrayList<Restaurant>) entry.getValue(); }

?

热点排行