(转)java中对集合对象list的几种循环访问总结

Java集合的Stack、Queue、Map的遍历
在集合操作中,常常离不开对集合的遍历,对集合遍历一般来说一个foreach就搞定了,但是,对于Stack、Queue、Map类型的遍历,还是有一些讲究的。
最近看了一些代码,在便利Map时候,惨不忍睹,还有一些是遍历错误,忽略了队列、栈与普通Collection的差别导致的,这些代码就不作为反面教材了。
下面是常用的写法:
一、Map的遍历
import java.util.HashMap; 
import java.util.Iterator; 
import java.util.Map; 

/** 
* Map的遍历,这个遍历比较特殊,有技巧 

* @author 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; 

/** 
* 队列的遍历 

* @author 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

HashMap的两种排序方式


Map<String, Integer> map = new HashMap<String, Integer>();
map.put("d", 2);
map.put("c", 1);
map.put("b", 1);
map.put("a", 3);List<Map.Entry<String, Integer>> infoIds =new ArrayList<Map.Entry<String, Integer>>(map.entrySet());//排序前
for (int i = 0; i < infoIds.size(); i++) {String id = infoIds.get(i).toString();System.out.println(id);
}
//d 2
//c 1
//b 1
//a 3//排序
Collections.sort(infoIds, new Comparator<Map.Entry<String, Integer>>() {   public int compare(Map.Entry<String, Integer> o1, Map.Entry<String, Integer> o2) {      //return (o2.getValue() - o1.getValue()); return (o1.getKey()).toString().compareTo(o2.getKey());}
}); //排序后
for (int i = 0; i < infoIds.size(); i++) {String id = infoIds.get(i).toString();System.out.println(id);
}
//根据key排序
//a 3
//b 1
//c 1
//d 2
//根据value排序
//a 3
//d 2
//b 1
//c 1


三、Stack的遍历
import java.util.Stack; 

/** 
* 栈的遍历 

* @author 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
在遍历集合时候,优先考虑使用foreach语句来做,这样代码更简洁些。


java中对集合对象list的几种循环访问的总结如下 
1 经典的for循环 
Java代码  收藏代码
  1. public static void main(String[] args) {  
  2.           
  3.     List<String> list = new ArrayList();  
  4.     list.add("123");  
  5.     list.add("java");  
  6.     list.add("j2ee");  
  7.     System.out.println("=========经典的for循环=======");  
  8.     for(int i=0; i<list.size();i++){  
  9.     System.out.println(list.get(i));  
  10.    }  
  11. }  
2 增强的for循环 
Java代码  收藏代码
  1. public static void main(String[] args) {  
  2.           
  3.     List<String> list = new ArrayList();  
  4.     list.add("123");  
  5.     list.add("java");  
  6.     list.add("j2ee");  
  7.     System.out.println("=========Java1.6的for循环=======");  
  8.     for(String s:list){  
  9.     System.out.println(s);  
  10.     }  
  11. }  
3 Iterate的使用 
Java代码  收藏代码
  1. public static void main(String[] args) {  
  2.           
  3.          List<String> list = new ArrayList();  
  4.     list.add("123");  
  5.     list.add("java");  
  6.     list.add("j2ee");  
  7.     System.out.println("=========Iterate循环=======");  
  8.     Iterator<String> iter = list.iterator();  
  9.     while(iter.hasNext()){  
  10.     System.out.println(iter.next());  
  11.     }  
  12.           
  13. }  

 

转载于:https://www.cnblogs.com/lixuwu/p/5676228.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/291298.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

NET框架下如何使用PaddleOCRSharp

打开VSIDE,新建Windows窗体应用(.NETFramework)类型的项目&#xff0c;选择一个.NET框架&#xff0c;如.NETFramework 4.0&#xff0c;右键点击项目&#xff0c;选择属性》生成&#xff0c;目标平台设置成X64.菜单》工具》选项&#xff0c;Nuget包管理器》程序包管理&#xff0…

Android在全球的市场份额跃居全球第一

Android在全球的市场份额跃居全球第一2011年第一季度&#xff0c;Android在全球的市场份额首次超过塞班系统&#xff0c;跃居全球第一。 2012年2月数据&#xff0c;Android占据全球智能手机操作系统市场52.5%的份额&#xff0c;中国市场占有率为68.4%. 有兴趣的&#xff0c;可加…

LeetCode之Add Digits

1、题目 Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. For example: Given num 38, the process is like: 3 8 11, 1 1 2. Since 2 has only one digit, return it. 2、代码实现 public class Solution {publi…

Redis主从复制(Master-Slave Replication)

案例测试&#xff1a;1. Master新增网卡&#xff0c;修改server端配置IP : 192.168.40.128/24注释&#xff1a; bind&#xff0c;支持网络连接2. 新建虚机slave&#xff0c;配置网络&#xff0c;修改redis配置#slaveof <masterip> <masterport>slaveof 192.168.40.…

[原]TCP/UDP使用细节备忘

[原]TCP/UDP使用细节备忘首先&#xff0c;TCP和UDP的基本区别是TCP提供可靠的面向连接的流传输&#xff1b;UDP提供不可靠的基于数据包的传输&#xff1b;所谓可靠就是说发送端调用send后&#xff0c;数据就一定会发送给接收端。虽然这当中可能会消耗很长的时间&#xff0c;或者…

java程序员遇到的问题_JAVA程序员最常遇见的10个异常

程序员最不想遇到黑心老板外&#xff0c;异常也是难以不遇&#xff0c;现在列出10个最遇到的异常&#xff0c;大家可以参考一下。NO.1 java.lang.NullPointerException这个异常大家肯定都经常遇到&#xff0c;异常的解释是 "程序遇上了空指针 "&#xff0c;简单地说…

如何对一组 IP 地址 进行排序?

咨询区 Cracker我有一组如下IP地址。192.168.1.5 69.52.220.44 10.152.16.23 192.168.3.10 192.168.1.4 192.168.2.1我在寻找一个方法将他们排序成如下顺序。10.152.16.23 69.52.220.44 192.168.1.4 192.168.1.5 192.168.2.1回答区 Alex Aza对 ip 地址进行排序&#xff0c;大概…

LeetCode之Intersection of Two Arrays

1、题目 Given two arrays, write a function to compute their intersection. Example: Given nums1 [1, 2, 2, 1], nums2 [2, 2], return [2]. Note: Each element in the result must be unique.The result can be in any order.Subscribe to see which companies asked t…

如何为APK签名?

1.用来生成应用签名的文件①默认: debug.keystore > debug签名的应用程序不能在Android Market上架销售&#xff0c;它会强制你使用自己的签名。> 不同电脑使用此文件生成的签名不一样。那就意味着如果你换了机器进行apk版本升级&#xff0c;那么将会出现上面那种程序不能…

shell 杂记一(笨鸟)

查找子串cat /tmp/debug.log | perl -e while(<>) { if ($_ ~ /hd_uid(\d)/) { print "$1\n"; } } 匹配每行"hd_uid"后面的数字if [ ... ]then ...fiexit numcase $i in1) echo 1111;;2) echo 2222;;*) echo other;;esacbasename 返回…

基于 Azure 的认知服务将文本合成语音

基于 Azure 的认知服务将文本合成语音Intro前几天发了一个 .NET 20 周年祝福视频&#xff0c;语音是通过 Azure 的认知服务合成的&#xff0c;下面就来介绍一下如何将使用 Azure 的认识服务实现将文本合成为语音Prepare你可以在 Azure Portal 上创建一个免费的语音服务&#xf…

sql查询结果集根据指定条件排序的方法

oracle认为 null 最大。 升序排列&#xff0c;默认情况下&#xff0c;null值排后面。 降序排序&#xff0c;默认情况下&#xff0c;null值排前面。 有几种办法改变这种情况&#xff1a; &#xff08;1&#xff09;用 nvl 函数或decode 函数 将null转换为一特定值 &#xff08;2…

mysql怎么改字体编码_mysql怎么改字符编码?

mysql命令行修改字符编码1、修改数据库字符编码mysql> alter database mydb character set utf8 ;2、创建数据库时&#xff0c;指定数据库的字符编码mysql> create database mydb character set utf8 ;3、查看mysql数据库的字符编码mysql> show variables like charac…

LeetCode之Move Zeroes

1、题目 Given an array nums, write a function to move all 0s to the end of it while maintaining the relative order of the non-zero elements. For example, given nums [0, 1, 0, 3, 12], after calling your function, nums should be [1, 3, 12, 0, 0]. Note: You …

七种RAID技术

想把好多硬盘组在一起使用的基本方式为&#xff1a;连接所有硬盘&#xff0c;先向第一个硬盘中写数据&#xff0c;满了之后&#xff0c;再向第二个硬盘上写数据&#xff0c;如此只是简单的连通了多个硬盘。 再此基础上发展了RAID技术&#xff1a;由独立磁盘组成的具有冗余特性的…

如何编译 dotnet/runtime 源代码

前言最近&#xff0c;准备为 dotnet/runtime 修改 issue&#xff0c;但是在 clone 代码后&#xff0c;发现要编译成功&#xff0c;远没有想象中那么容易。因此&#xff0c;将整个过程进行记录&#xff0c;以供大家参考。以下操作都是在 Windows 10 下完成。0.环境准备详见官方文…

网站高可用方案

前端&#xff1a;vanish squid等代理缓存动态数据缓存&#xff1a;对于不是经常变化的用memcached 如果跟微博差不多的场景可以用redis数据库&#xff1a;为了备份和恢复&#xff1a;可以用主从 对于主-》从-》从 有个参数log_slave_update参数决定后面两个从是否写日志一主多从…

Android:源码环境编译自定义的APP到ROM(System Image)中

有时候我们需要在源码环境中增加自己的应用或模块&#xff0c;随ROM一起发布。 下面讲述相关步骤: 1. 首先可以在SDK环境下进行编码设计&#xff08;如果你的APP不涉及到emulator无法模拟的硬件的话) 也可以参考另一篇文章&#xff0c;直接在Eclipse中调试系统级应用源代码&…

jenkins maven testng selenium自动化持续集成

准备环境 首先我们新建一个maven的工程&#xff0c;并且在pom.xml中配置好我们依赖的一些jar包 <dependencies><dependency><groupId>org.seleniumhq.selenium</groupId><artifactId>selenium-java</artifactId><version>2.46.0<…

LeetCode之Excel Sheet Column Number

1、题目 Related to question Excel Sheet Column Title Given a column title as appear in an Excel sheet, return its corresponding column number. For example: A -> 1B -> 2C -> 3...Z -> 26AA -> 27AB -> 28 Credits: Special thanks to ts f…