博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
20190219list map练习
阅读量:5826 次
发布时间:2019-06-18

本文共 921 字,大约阅读时间需要 3 分钟。

hot3.png

list

Student s1=new Student("张三",1);		Student s2=new Student("李四",2);		Student s3=new Student("王五",2);				List
list=new ArrayList
(); list.add(s1); list.add(s2); list.add(s3); for(int i=0;i

map  遍历注意Entry()

HashMap
map=new HashMap(); map.put(1, "aaa"); map.put(2, "bbb"); map.put(3, "ccc"); //map.remove(3);// for(Map.Entry
entry : map.entrySet())//遍历反法1// {// System.out.println(entry.getKey()+entry.getValue());// } //遍历方法2 for(Integer key :map.keySet()) { System.out.println(key); } for(String val :map.values()) { System.out.println(val); } //遍历方法3 Iterator
> it=map.entrySet().iterator(); while(it.hasNext()) { Map.Entry
ma=it.next(); System.out.println(ma.getKey()); System.out.println(ma.getValue()); } }

 

转载于:https://my.oschina.net/u/3234821/blog/3012015

你可能感兴趣的文章
创业维艰、守成不易
查看>>
PHP环境安装套件:快速安装LAMP环境
查看>>
CSS3
查看>>
ul下的li浮动,如何是ul有li的高度
查看>>
C++ primer plus
查看>>
python mysqlDB
查看>>
UVALive 3942 Remember the Word Tire+DP
查看>>
从微软的DBML文件中我们能学到什么(它告诉了我们什么是微软的重中之重)~目录...
查看>>
被需求搞的一塌糊涂,怎么办?
查看>>
c_数据结构_队的实现
查看>>
jquery 选择器总结
查看>>
Qt设置背景图片
查看>>
【阿里云文档】常用文档整理
查看>>
java中的Volatile关键字
查看>>
前端自定义图标
查看>>
sqlserver 取取月初月末和月份间隔
查看>>
Vagrant的一个BUG - 不支持'change_host_name'
查看>>
实验二
查看>>
独立开发一个云(PaaS)的核心要素, Go, Go, Go!!!
查看>>
MyBatis使用DEMO及cache的使用心得
查看>>