Map集合的三种遍历方式

一·通过键找值的方法

   	Map<String,Integer> map=new HashMap<>();

      map.put("a",1);
      map.put("b",2);
      map.put("c",3);

      Set<String> strings = map.keySet();
      for (String string : strings) {
      
     System.out.println(string+"="+map.get(string));
        }

二·键值对

    public static void main(String[] args) {
        Map<String,Integer> map=new HashMap<>();

        map.put("a",1);
        map.put("b",2);
        map.put("c",3);

        Set<Map.Entry<String, Integer>> entries = map.entrySet();
        for (Map.Entry<String, Integer> entry : entries) {
            System.out.println(entry.getKey()+"="+entry.getValue());
        }

三·lambda表达式

    public static void main(String[] args) {
        Map<String,Integer> map=new HashMap<>();

        map.put("a",1);
        map.put("b",2);
        map.put("c",3);

        map.forEach(new BiConsumer<String, Integer>() {
            @Override
            public void accept(String s, Integer integer) {
                System.out.println(s+"="+integer);
            }
        });

lambda表达式省略写法

map.forEach(( s,  integer)-> System.out.println(s+"="+integer));

Lambda表达式的省略模式

  • 小括号内的参数类型可以省略,有多个参数的情况下,不能只省略一个
  • 如果小括号内有且仅有一个参数,则小括号可以省略
  • 如果大括号内有且仅有一个语句,可以同时省略大括号,return 关键字及语句分号。
    注意:在forEach(new BiConsumer)
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值