zoukankan      html  css  js  c++  java
  • think in java读后总结---Map集合的几种遍历方式

    代码很简单哈,算是对基础知识的一个总结和回顾吧,先上代码:

    /**
     * Map集合的几种遍历方式
     * @author wxh
     * @vertion 1.0
     */
    public class DemoMap {
        
        private static Map<Integer,String> getMap() {
            Map<Integer,String> map = new HashMap<Integer,String>();
            map.put( 1, "wxh1" );
            map.put( 2, "wxh2" );
            map.put( 3, "wxh3" );
            map.put( 4, "wxh4" );
            return map;
        }
        
        /**
         * 直接遍历
         */
        @Test
        public void test01() {
            Set<Entry<Integer, String>> set = getMap().entrySet();
            Iterator<Entry<Integer, String>> it = set.iterator();
            while( it.hasNext() ) {
                Entry<Integer, String> e = it.next();
                System.out.println( e.getKey() + "==" + e.getValue() );
            }
        }
        
        /**
         * 用增强for循环遍历
         */
        @Test
        public void test02() {
            for( Entry<Integer, String> e : getMap().entrySet() ) {
                System.out.println( e.getKey() + "==" + e.getValue() );
            }
        }
        
        /**
         * 根据key获取value
         */
        @Test
        public void test03() {
            Set<Integer> set = getMap().keySet();
            Iterator<Integer> it = set.iterator();
            while( it.hasNext() ) {
                Integer key = it.next();
                String value = getMap().get( key );
                System.out.println( key + "==" + value );
            }
        }
        
        /**
         * 通过增强for循环根据key获取value
         */
        @Test
        public void test04() {
            for( Integer key : getMap().keySet() ) {
                String value = getMap().get( key );
                System.out.println( key + "==" + value );
            }
        }
    }

  • 相关阅读:
    Activity和Service交互之bindService(回调更新UI)
    Service和Activity交互之广播方式
    自定义动态注册广播和静态注册广播
    Service
    AsyncTask
    播放视频
    播放音乐
    SurfaceView实现拍照预览
    从相册选取图片
    拍照并保存到指定文件夹
  • 原文地址:https://www.cnblogs.com/dahao1020/p/5247605.html
Copyright © 2011-2022 走看看