码迷,mamicode.com
首页 > 编程语言 > 详细

Java的Iterator迭代器

时间:2017-10-26 13:37:09      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:span   遍历   ext   color   string   new   hashset   arrays   class   

迭代器能够将遍历的操作与序列底层的结构分离

 1 import java.util.*;
 2 
 3 public class CrossContainerIterator {
 4 
 5     public static void main(String[] args) {
 6         
 7         ArrayList<Integer> arrayList = new ArrayList<Integer>(Arrays.asList(1,2,3));
 8         LinkedList<Integer> linkedList = new LinkedList<Integer>(Arrays.asList(1,2,3));
 9         HashSet<Integer> hashSet = new HashSet<Integer>();
10         
11         hashSet.addAll(Arrays.asList(1,1,3));
12         
13         display(arrayList.iterator());
14         display(linkedList.iterator());
15         display(hashSet.iterator());
16         
17     }
18     public static void display(Iterator<Integer> it)
19     {
20         while(it.hasNext())
21         {
22             System.out.print(it.next());
23         }
24         System.out.println();
25         
26     }
27     
28 
29 }

 

Java的Iterator迭代器

标签:span   遍历   ext   color   string   new   hashset   arrays   class   

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

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