详解Java中list,set,map的遍历与增强for循环
程序员文章站
2024-03-06 21:47:38
详解java中list,set,map的遍历与增强for循环
java集合类可分为三大块,分别是从collection接口延伸出的list、set和以键值对形式作存储的m...
详解java中list,set,map的遍历与增强for循环
java集合类可分为三大块,分别是从collection接口延伸出的list、set和以键值对形式作存储的map类型集合。
关于增强for循环,需要注意的是,使用增强for循环无法访问数组下标值,对于集合的遍历其内部采用的也是iterator的相关方法。如果只做简单遍历读取,增强for循环确实减轻不少的代码量。
集合概念:
1.作用:用于存放对象
2.相当于一个容器,里面包含着一组对象,其中的每个对象作为集合的一个元素出现
3.java的容器有集合类和数组,不同之处是
区别及其常用实现类
list接口:
列表有序 元素可重复
实现类:arraylist:动态数组列表
linkedlist:双向链表
set接口:
集无序,元素不可重复
实现类:hashset:散列集
treeset:树集 内部排序
map接口:
以键值对的方式存储数据 数据-键不允许重复
实现类:hashset:散列集
treeset:树集 内部排序
jdk1.0出现的集合类都是线程安全的,但效率低
jdk1.2出现的集合类都不是线程安全的,但效率高
代码示例如下:
import java.util.arraylist; import java.util.hashset; import java.util.iterator; import java.util.list; import java.util.set; public class listandset{ public static void main(string[] args) { settest(); listtest(); } // 遍历set集合 private static void settest() { set<string> set = new hashset<string>(); set.add("a"); set.add("b"); set.add("c"); set.add("d"); set.add("e"); //set集合遍历方法1:使用iterator iterator<string> it = set.iterator(); while (it.hasnext()) { string value = it.next(); system.out.println(value); } //set集合遍历方法2:使用增强for循环。 for(string s: set){ system.out.println(s); } } // 遍历list集合 private static void listtest() { list<string> list = new arraylist<string>(); list.add("111"); list.add("222"); list.add("333"); list.add("444"); list.add("555"); // 遍历方式1:使用iterator iterator<string> it = list.iterator(); while (it.hasnext()) { string value = it.next(); system.out.println(value); } // 遍历方法2:使用传统for循环进行遍历。 for (int i = 0, size = list.size(); i < size; i++) { string value = list.get(i); system.out.println(value); } // 遍历方法3:使用增强for循环进行遍历。 for (string value : list) { system.out.println(value); } } } //关于map类型集合的遍历,keyset()与entryset()方法 //增强for循环 public class map{ public static void main(string[] args) { // 创建一个hashmap对象,并加入了一些键值对。 map<string, string=""> maps = new hashmap<string, string="">(); maps.put("111", "111"); maps.put("222", "222"); maps.put("333", "333"); maps.put("444", "444"); maps.put("555", "555"); // 传统的遍历map集合的方法1; keyset() //traditionalmethod1(maps); // 传统的遍历map集合的方法2; entryset() //traditionalmethod2(maps); // 使用增强for循环来遍历map集合方法1; keyset() //strongformethod1(maps); // 使用增强for循环来遍历map集合方法2; entryset() strongformethod2(maps); } private static void strongformethod2(map<string, string=""> maps) { set<entry<string, string="">> set = maps.entryset(); for (entry<string, string=""> entry : set) { string key = entry.getkey(); string value = entry.getvalue(); system.out.println(key + " : " + value); } } private static void strongformethod1(map<string, string=""> maps) { set<string> set = maps.keyset(); for (string s : set) { string key = s; string value = maps.get(s); system.out.println(key + " : " + value); } } // 使用entryset()方法,获取maps集合中的每一个键值对, private static void traditionalmethod2(map<string, string=""> maps) { set<map.entry<string, string="">> sets = maps.entryset(); // 取得迭代器遍历出对应的值。 iterator<entry<string, string="">> it = sets.iterator(); while (it.hasnext()) { map.entry<string, string=""> entry = (entry<string, string="">) it.next(); string key = entry.getkey(); string value = entry.getvalue(); system.out.println(key + " : " + value); } } // 使用keyset()方法,获取maps集合中的所有键,遍历键取得所对应的值。 private static void traditionalmethod1(map<string, string=""> maps) { set<string> sets = maps.keyset(); // 取得迭代器遍历出对应的值。 iterator<string> it = sets.iterator(); while (it.hasnext()) { string key = it.next(); string value = maps.get(key); system.out.println(key + " : " + value); } } }
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!