Map集合转换模式对比及其循环----------- HashMap

Map的输出依赖set(Map底层是Set)

HashMap:

模式3种

  1. entrySet();//把映射关系转化为set集合;

getValue() 返回与此项对应的值   getKey()返回与此项对应的键。

2.keySet();//map中所有的Key放入Set集合

get()                         put();

3. values();//返回一个集合  此集合装map中的value

循环模式

  1. foreach

Set> e= m.entrySet();

for (Entry en : m.entrySet()) {

          System.out.println(en.getKey()+"++++"+en.getValue());

                  }

 

=======================================================

for (String s : m.keySet()) {

          System.out.println(s+"\t"+m.get(s));

}

 

=========================================================

for (Student s4 : m.values()) {

                          System.out.println(s4.name);

                  }

 

2.迭代器

 

Iterator> it=s.iterator();

         while(it.hasNext()){

                  Entry s2=it.next();

                  System.out.println(s2.getKey()+"===="+s2.getValue().name);

         }

================================================================

Iterator it1=s3.iterator();

   while(it1.hasNext()){

             String s=it1.next();

             System.out.println(m.get(s).name);

   }

=============================================================

Collection cc= m.values();

          Iterator it1 =cc.iterator();

          while(it1.hasNext()){

                   Student ss= it1.next();

Map集合转换模式对比及其循环----------- HashMap_第1张图片

你可能感兴趣的:(Java基础)