如何得到map中的KEY和VALUE
答案:1 悬赏:60 手机版
解决时间 2021-01-27 05:15
- 提问者网友:不爱我么
- 2021-01-26 20:49
如何得到map中的KEY和VALUE
最佳答案
- 五星知识达人网友:往事隔山水
- 2021-01-26 21:46
package test;import java.util.*;public class Test_Map {
public static void main(String[] args) throws Exception {
Map map = new HashMap();
map.put("one", 1);map.put("two", 2);
map.put("three", 3);
//得到value的方法
System.out.println("========得到value的方法========");
Collection c = map.values();
System.out.println(c);
Iterator iter1 = (Iterator)map.values().iterator();
while(iter1.hasNext()){
System.out.println(iter1.next());}//得到key的方法
System.out.println("========得到key的方法========");
Collection s = map.keySet();
System.out.println(s);
Iterator iter2 = (Iterator)map.keySet().iterator();
public static void main(String[] args) throws Exception {
Map map = new HashMap();
map.put("one", 1);map.put("two", 2);
map.put("three", 3);
//得到value的方法
System.out.println("========得到value的方法========");
Collection c = map.values();
System.out.println(c);
Iterator iter1 = (Iterator)map.values().iterator();
while(iter1.hasNext()){
System.out.println(iter1.next());}//得到key的方法
System.out.println("========得到key的方法========");
Collection s = map.keySet();
System.out.println(s);
Iterator iter2 = (Iterator)map.keySet().iterator();
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯