map的两种操作

Posted 飞教主

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了map的两种操作相关的知识,希望对你有一定的参考价值。

1、将所有的key取出来,然后再一个个的取value

Set keys  = map.keySet();

if(keys !=null)

{

for(Striing s:keys)

  System.out.println(map.get(s));

}

 

 

2、取一个key,再取一个value

for(Map.Entry me:map.entrySet)

System.out.println(me.getKey()+me.getValue());

以上是关于map的两种操作的主要内容,如果未能解决你的问题,请参考以下文章

遍历Map的两种方法(有排序)

Map的两种遍历

Map的两种遍历方式

Map的两种取出方式

map的两种遍历方法

operator 的两种用法