JDK1.8新特性——使用新的方式遍历集合
2019-11-13 16:06:43来源:博客园 阅读 ()
JDK1.8新特性——使用新的方式遍历集合
JDK1.8新特性——使用新的方式遍历集合
摘要:本文主要学习了在JDK1.8中新增的遍历集合的方式。
遍历List
方法:
1 default void forEach(Consumer<? super T> action) { 2 Objects.requireNonNull(action); 3 for (T t : this) { 4 action.accept(t); 5 } 6 }
实例:
1 public static void main(String[] args) { 2 List<String> list = new ArrayList<String>(); 3 list.add("张三"); 4 list.add("李四"); 5 list.add("王五"); 6 list.add("赵六"); 7 list.forEach(e -> System.out.println(e)); 8 }
遍历Set
方法:
1 default void forEach(Consumer<? super T> action) { 2 Objects.requireNonNull(action); 3 for (T t : this) { 4 action.accept(t); 5 } 6 }
实例:
1 public static void main(String[] args) { 2 Set<String> set = new HashSet<String>(); 3 set.add("张三"); 4 set.add("李四"); 5 set.add("王五"); 6 set.add("赵六"); 7 set.forEach(e -> System.out.println(e)); 8 }
遍历Map
方法:
1 default void forEach(BiConsumer<? super K, ? super V> action) { 2 Objects.requireNonNull(action); 3 for (Map.Entry<K, V> entry : entrySet()) { 4 K k; 5 V v; 6 try { 7 k = entry.getKey(); 8 v = entry.getValue(); 9 } catch(IllegalStateException ise) { 10 // this usually means the entry is no longer in the map. 11 throw new ConcurrentModificationException(ise); 12 } 13 action.accept(k, v); 14 } 15 }
实例:
1 public static void main(String[] args) { 2 Map<Integer, String> map = new HashMap<Integer, String>(); 3 map.put(101, "张三"); 4 map.put(102, "李四"); 5 map.put(103, "王五"); 6 map.put(104, "赵六"); 7 map.forEach((key, value) -> System.out.println(key+"->"+value)); 8 }
原文链接:https://www.cnblogs.com/shamao/p/11853056.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Spring Boot 2.3.0 新特性Redis 拓扑动态感应 2020-06-11
- 今天来介绍java 各版本的新特性,一篇文章让你了解 2020-06-10
- Spring Boot 2.3 新特性优雅停机详解 2020-06-08
- 原创 Spring Boot 2.3 新特性分层JAR 2020-06-08
- MyBatis缓存特性详解 2020-06-03
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash