在给定索引处从Java Map获取配对值

时间:2018-06-11 16:04:55

标签: android

考虑以下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()不接受参数。

我能做些什么来获得我需要的价值?

0 个答案:

没有答案