本帖最后由 黑马王鹏 于 2012-8-15 14:33 编辑
- import java.util.*;
- public class MapDemo {
- /**
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Map<String,String> m = new HashMap<String,String>();
- //疑问:Map不是接口么?为什么可以成为new HashMap的对象实例呢?
- m.put("01", "wp5");
- m.put("02", "wp2");
- m.put("03", "wp3");
- System.out.println(m);
- }
- }
复制代码 |
|