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

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

在集合操作中,常常离不开对集合的遍历,对集合遍历一般来说一个foreach就搞定了,但是,对于Stack、Queue、Map类型的遍历,还是有一些讲究的。

最近看了一些代码,在便利Map时候,惨不忍睹,还有一些是遍历错误,忽略了队列、栈与普通Collection的差别导致的,这些代码就不作为反面教材了。

下面是常用的写法:

一、Map的遍历

import java.util.HashMap;    import java.util.Iterator;   import java.util.Map;   /** * Map的遍历,这个遍历比较特殊,有技巧 */   public class TestMap { public static void main(String[] args) { Map
map = new HashMap
(); map.put("1", "a"); map.put("2", "b"); map.put("3", "c"); //最简洁、最通用的遍历方式 for (Map.Entry
entry : map.entrySet()) { System.out.println(entry.getKey() + " = " + entry.getValue()); } //Java5之前的比较简洁的便利方式1 System.out.println("----1----"); for (Iterator
> it = map.entrySet().iterator(); it.hasNext();) { Map.Entry
entry = it.next(); System.out.println(entry.getKey() + " = " + entry.getValue()); } //Java5之前的比较简洁的便利方式2 System.out.println("----2----"); for (Iterator
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;   /**     * 队列的遍历   */   public class TestQueue { public static void main(String[] args) { Queue
q = new LinkedBlockingQueue
(); //初始化队列 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----- 0 1 2 3 4 -------2----- 0 1 2 3 4 Process finished with exit code 0

三、Stack的遍历

import java.util.Stack;    /**      * 栈的遍历     */   public class TestStack { public static void main(String[] args) { Stack
s = new Stack
(); 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()); // } } } 0 1 2 3 4 ------1----- 4 3 2 1 0 ------2----- Process finished with exit code 0

在遍历集合时候,优先考虑使用foreach语句来做,这样代码更简洁些。

转载于:https://www.cnblogs.com/yuyu666/p/9741452.html

你可能感兴趣的文章
无谓的通宵加班之后的思索
查看>>
S1的小成果:MyKTV系统
查看>>
从setting文件导包
查看>>
编写一个函数isMerge,判断一个字符串str是否可以由其他两个字符串part1和part2“组合”而成...
查看>>
union和union all
查看>>
Github 开源:使用控制器操作 WinForm/WPF 控件( Sheng.Winform.Controls.Controller)
查看>>
PMD使用提醒
查看>>
Codeforces 887D Ratings and Reality Shows
查看>>
论文《A Generative Entity-Mention Model for Linking Entities with Knowledge Base》
查看>>
CentOS 6.7编译安装PHP 5.6
查看>>
Linux记录-salt分析
查看>>
Android Studio默认快捷键
查看>>
发布开源库到JCenter所遇到的一些问题记录
查看>>
第七周作业
查看>>
函数式编程与参数
查看>>
flush caches
查看>>
SSAS使用MDX生成脱机的多维数据集CUB文件
查看>>
ACM_hdu1102最小生成树练习
查看>>
MyBatis源码分析(一)--SqlSessionFactory的生成
查看>>
android中ListView点击和里边按钮或ImageView点击不能同时生效问题解决
查看>>