黑马程序员技术交流社区

标题: 求助:无法在eclipse中导入 LinkedHashMap包 [打印本页]

作者: CoeusLYJ    时间: 2015-5-7 14:07
标题: 求助:无法在eclipse中导入 LinkedHashMap包
本帖最后由 CoeusLYJ 于 2015-5-7 14:09 编辑
  1. package cn.itcast.map.demo;
  2. import java.util.HashMap;
  3. import java.util.Iterator;
  4. import java.util.Map;
  5. import java.util.Set;

  6. public class LinkedHashMap {
  7.         public static void main(String[] args){
  8.                 HashMap<Integer,String> m1=new LinkedHashMa<Integer,String>(); //在我的eclipse中,LinkedHashMap这里是有红色波浪线的
  9.                 m1.put(58, "zhangsan");
  10.                 m1.put(32, "susan");
  11.                 m1.put(9, "madrid");
  12.                 m1.put(21, "greece");
  13.                 Set<Map.Entry<Integer, String>> s1=m1.entrySet();
  14.                 Iterator<Map.Entry<Integer,String>> it=s1.iterator();
  15.                 while(it.hasNext()){
  16.                         Map.Entry<Integer, String> en=it.next();
  17.                         Integer Key=en.getKey();
  18.                         String Value=en.getValue();
  19.                         System.out.println(Key+":"+Value);
  20.                 }               
  21.         }
  22. }
复制代码

作者: CoeusLYJ    时间: 2015-5-8 23:39
求大神解答




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2