zoukankan      html  css  js  c++  java
  • Map 集合的元素的遍历

    1、for 循环遍历map集合中的元素,entrySet()方法。

    public  class Test{

      public static void mian(String[]args){

      HashMap <String,String> hm=new HashMap<String,String>();

      hm.put("a","aaaa");

      hm.put("b","bbbb");

      hm.put("c","cccc");

      Iterator it=hm.entrySet().iterator();//返回键值对应的Set试图集合  

      while(it.hasNext()){

        Map.Entry entry=(Map.Entry)it.next();

        Object key=entry.getKey();

        Object value=entry.getValue();

      System.out.println("键="+key+"值="+value);

        }

    /*//forEach循环遍历

    for (Map.Entry<String, Integer> entry : hm.entrySet())
       {
        String key = entry.getKey().toString();
       String value = entry.getValue().toString();
       System.out.println("key=" + key + " value=" + value);
      }

    */

      }

    }

    2、根据map集合的key值来获取相对应的value

    public class Test1{

    public static void mian(String[]args){

     HashMap <String,String> hm=new HashMap<String,String>();

      hm.put("a","aaaa");

      hm.put("b","bbbb");

      hm.put("c","cccc");

      Iterator it=hm.keySet().iterator();

      while(it.hasNext()){

      Object key=it.next();

      Object value=hm.get(key);

      System.out.println("key=" + key + " value=" + value);

        }

      }

     }

    Note:自行导包,连接的远程网络编写的。手动的。

  • 相关阅读:
    Linux 操作系统读写寄存器
    mysql_mysql基本使用
    logcat日志文件分析
    pytest_用例运行级别_class级
    pytest_用例运行级别_函数级
    pytest_用例运行级别_模块级
    python生成接口自动化测试报告模版
    python中nonlocal 的作用域
    python中global的作用域
    python装饰器参数那些事_接受参数的装饰器
  • 原文地址:https://www.cnblogs.com/sm-myworks/p/3556349.html
Copyright © 2011-2022 走看看