Map和List的遍歷方式

List

List strList = new ArrayList<>();
        strList.add("1");
        strList.add("2");
        strList.add("3");
        strList.add("4");
        strList.add("5");

        Iterator<String> iterator = strList.iterator();
        while (iterator.hasNext()) {
            String item = iterator.next();
            if (item.equals("3")) {
                iterator.remove();
            }
        }

        for (Object s : strList) {
            System.out.println(s.toString());
        }

ArrayList中經過執行System.arraycopy()方法以複製數組的方式來完成刪除,插入,擴容等功能。apache

Map

public class TestMap {
         public static void main(String[] args) {
              Map<String, Object> map = new HashMap<String, Object>();
              map.put("aaa", 111);
              map.put("bbb", 222);
              map.put("ccc", 333);
              map.put("ddd", 444);
              //Map集合循環遍歷方式一  
             System.out.println("第一種:經過Map.keySet()遍歷key和value:");
            for(String key:map.keySet()){//keySet獲取map集合key的集合  而後在遍歷key便可
                String value = map.get(key).toString();//
                System.out.println("key:"+key+" vlaue:"+value);
            }

           //Map集合循環遍歷二  經過迭代器的方式
           System.out.println("第二種:經過Map.entrySet使用iterator遍歷key和value:");
           Iterator<Entry<String, Object>> it = map.entrySet().iterator();
           while(it.hasNext()){
                Entry<String, Object> entry = it.next();
                System.out.println("key:"+entry.getKey()+"  key:"+entry.getValue());
          }

         // Map集合循環遍歷方式三 推薦,尤爲是容量大時
        System.out.println("第三種:經過Map.entrySet遍歷key和value");
        for (Map.Entry<String, Object> m : map.entrySet()) {
        System.out.println("key:" + m.getKey() + " value:" + m.getValue());
    }

         // 第四種:
         System.out.println("第四種:經過Map.values()遍歷全部的value,但不能遍歷key");
        for(Object m:map.values()){
          System.out.println(m);
        }
   }
}

將list按照某種方式拼接成字符串

public String listToString(List list, char separator) {
        return org.apache.commons.lang.StringUtils.join(list.toArray(), separator);
    }
相關文章
相關標籤/搜索