考虑以下java代码
categoryMap.put(movie.getCategory(),movieList1);
Iterator it = categoryMap.entrySet().iterator();
while (it.hasNext()) {
Map.Entry pair = (Map.Entry)it.next();
Log.d("Key", pair.getKey().toString());
Log.d("Val5", pair.getValue(5).toString());
pair.getValue()
返回List
为7,我需要获取索引5处的值,但pair.getValue()
不接受参数。
我能做些什么来获得我需要的价值?