从java

时间:2016-03-02 16:05:00

标签: java arraylist hashmap

我有4个hashMaps:

         Map <String, Integer> item1 =new HashMap<String, Integer>();
         Map <String, Integer> item2 =new HashMap<String, Integer>();
         Map <String, Integer> item3 =new HashMap<String, Integer>();
         Map <String, Integer> item4 =new HashMap<String, Integer>();  

我将其中的4个添加到列表中:

       List<Map> Items= new ArrayList<>();
        Items.add(item1);
        Items.add(item2);
        Items.add(item3);
        Items.add(item4);

我想使用hashMaps列表从#value获取密钥&#34; Items&#34;所以我尝试了这段代码:

  for(int i=0; i<n; i++)
            {  
               String key= null;
               int value=v;
              for(Map.Entry entry: Items.get(i).entrySet()){
                  if(value == (entry.getValue())){
                      key = (String) entry.getKey();
                      break;
                  }
              }

但是Items.get(i).entrySet()不起作用!

我收到这些错误:

-Map.Entry is a raw type. References to generic type Map<K,V>.Entry<K,V> should be parameterized
-Type mismatch: cannot convert from element type Object to Map.Entry
-Incompatible operand types int and Object

有谁知道怎么做?

3 个答案:

答案 0 :(得分:3)

首先重新制作List变量以包含地图的类型。这将使.entrySet()返回条目Map<String,Integer>

的正确格式
List<Map<String, Integer>> items = new ArrayList<>();

for (int i = 0; i < items.size(); i++) {
    String key = null;
    int value = 0;
    for (Map.Entry<String, Integer> entry: items.get(i).entrySet()) {
        if (value == (entry.getValue())) {
            key = (String) entry.getKey();
            break;
        }
    }
}

答案 1 :(得分:1)

你可以试试这个

首先将通用部分<String, Integer>添加到Map的{​​{1}},如下所示:

List

然后:

List<Map<String, Integer>> Items= new ArrayList<>();

答案 2 :(得分:0)

你可以使用它。它会正常工作。

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class MapTest {

    public static void main(String[] args) {
        Map <String, Integer> item1 =new HashMap<String, Integer>();
        Map <String, Integer> item2 =new HashMap<String, Integer>();
        Map <String, Integer> item3 =new HashMap<String, Integer>();
        Map <String, Integer> item4 =new HashMap<String, Integer>();  

        List<Map<String, Integer>> Items= new ArrayList<Map<String, Integer>>();
        Items.add(item1);
        Items.add(item2);
        Items.add(item3);
        Items.add(item4);

        for (int i = 0; i < Items.size(); i++) {
            String key = null;
            int value = 0;
            for (Map.Entry<String, Integer> entry: Items.get(i).entrySet()) {
                if (value == (entry.getValue())) {
                    key = (String) entry.getKey();
                    break;
                }
            }
        }
    }
}