博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java集合的Stack、Queue、Map的遍历
阅读量:6219 次
发布时间:2019-06-21

本文共 2488 字,大约阅读时间需要 8 分钟。

hot3.png

在集合操作中,常常离不开对集合的遍历,对集合遍历一般来说一个foreach就搞定了,但是,对于Stack、Queue、Map类型的遍历,还是有一些讲究的。
 
最近看了一些代码,在便利Map时候,惨不忍睹,还有一些是遍历错误,忽略了队列、栈与普通Collection的差别导致的,这些代码就不作为反面教材了。
 
下面是常用的写法:
 
一、Map的遍历
 
import java.util.HashMap; 
import java.util.Iterator; 
import java.util.Map; 
/** 
* Map的遍历,这个遍历比较特殊,有技巧 
* leizhimin 2009-7-22 15:15:34 
*/ 
public  class TestMap { 
         public  static  void main(String[] args) { 
                Map<String, String> map =  new HashMap<String, String>(); 
                map.put( "1",  "a"); 
                map.put( "2",  "b"); 
                map.put( "3",  "c"); 
                 //最简洁、最通用的遍历方式 
                 for (Map.Entry<String, String> entry : map.entrySet()) { 
                        System.out.println(entry.getKey() +  " = " + entry.getValue()); 
                } 
                 //Java5之前的比较简洁的便利方式1 
                System.out.println( "----1----"); 
                 for (Iterator<Map.Entry<String, String>> it = map.entrySet().iterator(); it.hasNext();) { 
                        Map.Entry<String, String> entry = it.next(); 
                        System.out.println(entry.getKey() +  " = " + entry.getValue()); 
                } 
                 //Java5之前的比较简洁的便利方式2 
                System.out.println( "----2----"); 
                 for (Iterator<String> it = map.keySet().iterator(); it.hasNext();) { 
                        String key = it.next(); 
                        System.out.println(key +  " = " + map.get(key)); 
                } 
        } 
}
 
3 = c 
2 = b 
1 = a 
----1---- 
3 = c 
2 = b 
1 = a 
----2---- 
3 = c 
2 = b 
1 = a 
Process finished with exit code 0
 
二、Queue的遍历
 
import java.util.Queue; 
import java.util.concurrent.LinkedBlockingQueue; 
/** 
* 队列的遍历 
* leizhimin 2009-7-22 15:05:14 
*/ 
public  class TestQueue { 
         public  static  void main(String[] args) { 
                Queue<Integer> q =  new LinkedBlockingQueue<Integer>(); 
                 //初始化队列 
                 for ( int i = 0; i < 5; i++) { 
                        q.offer(i); 
                } 
                System.out.println( "-------1-----"); 
                 //集合方式遍历,元素不会被移除 
                 for (Integer x : q) { 
                        System.out.println(x); 
                } 
                System.out.println( "-------2-----"); 
                 //队列方式遍历,元素逐个被移除 
                 while (q.peek() !=  null) { 
                        System.out.println(q.poll()); 
                } 
        } 
}
 
-------1----- 
-------2----- 
Process finished with exit code 0
 
三、Stack的遍历
 
import java.util.Stack; 
/** 
* 栈的遍历 
* leizhimin 2009-7-22 14:55:20 
*/ 
public  class TestStack { 
         public  static  void main(String[] args) { 
                Stack<Integer> s =  new Stack<Integer>(); 
                 for ( int i = 0; i < 10; i++) { 
                        s.push(i); 
                } 
                 //集合遍历方式 
                 for (Integer x : s) { 
                        System.out.println(x); 
                } 
                System.out.println( "------1-----"); 
                 //栈弹出遍历方式 
//                while (s.peek()!=null) {     //不健壮的判断方式,容易抛异常,正确写法是下面的 
                 while (!s.empty()) { 
                        System.out.println(s.pop()); 
                } 
                System.out.println( "------2-----"); 
                 //错误的遍历方式 
//                for (Integer x : s) { 
//                        System.out.println(s.pop()); 
//                } 
        } 
}
 
------1----- 
------2----- 
Process finished with exit code 0
 

转载于:https://my.oschina.net/softwarechina/blog/144100

你可能感兴趣的文章
各种开源协议的简述
查看>>
群里看到的一个基础的问题。先记录下
查看>>
mybatis学习笔记(17)-spring和mybatis整合
查看>>
不一样的事件总线 - NextEvents
查看>>
web.xml中load-on-startup的作用
查看>>
linux下远程桌面xp rdesktop
查看>>
REDIS的命令
查看>>
蚂蚁金服Java开发一面
查看>>
工厂模式------之三
查看>>
MySQL 5.6以上解压版的服务配置和使用
查看>>
AndEngine: Using the Object Pool
查看>>
Postgres-XL概述
查看>>
修改ssh默认端口号
查看>>
Log4j写日志文件使用详解
查看>>
jstl简介
查看>>
其他三维对象的表示---柔性对象
查看>>
第15章 JDBC
查看>>
AKKA的Future支持并发模式
查看>>
获取iframe 的document方式,并且防止触摸滑动
查看>>
ueditor富文本编辑器多用户版
查看>>