码迷,mamicode.com
首页 > 其他好文 > 详细

forEach与迭代器

时间:2017-10-27 15:42:45      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:ati   logs   prot   term   []   private   static   接口   each   

任何实现了Iterable接口的类,都可以用forEach语句,并且Java中大部分的Collection都可以用forEach,除了Map
1
import java.util.*; 2 public class AdapterMethodiom implements Iterable<String> 3 { 4 protected String[] words = ("hello world this is a good day").split(" "); 5 public Iterator<String> iterator() { 6 return new Iterator<String>(){ 7 private int index =0; 8 9 @Override 10 public boolean hasNext() { 11 return index < words.length; 12 } 13 14 @Override 15 public String next() { 16 17 return words[index++]; 18 } 19 20 }; 21 22 } 23 public static void main(String[] args) { 24 for(String s:new AdapterMethodiom()) 25 { 26 System.out.println(s+" "); 27 } 28 29 } 30 }

 

forEach与迭代器

标签:ati   logs   prot   term   []   private   static   接口   each   

原文地址:http://www.cnblogs.com/vector11248/p/7742544.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!