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

collection的iterator()方法

时间:2015-07-01 06:25:02      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:iterator

/*
	 Iterator iterator(); 获取集合所依赖的迭代器对象.
	 通过迭代器中方法完成集合的迭代(遍历)。
	 
	 注意:这种方式是所有集合通用的遍历方式。
*/
import java.util.*;

public class CollectionTest02{
	
	public static void main(String[] args){
		
		//创建集合对象
		Collection c = new ArrayList();
		
		//添加元素
		c.add(100); //自动装箱
		c.add(3.14); //自动装箱
		c.add(false);//自动装箱
		
		
		//迭代,遍历
		//1.获取迭代器对象
		//不需要关心底层集合的具体类型,所有集合依赖的迭代器都实现了java.util.Iterator;接口.
		//Iterator it = c.iterator(); //迭代器是面向接口编程.
											 //it是引用,保存了内存地址,指向堆中的“迭代器对象”
			
		//java.util.LinkedList$ListItr 类是LinkeList集合所依赖的迭代器
		//java.util.AbstractList$Itr 类是ArrayList集合所依赖的迭代器.
		//System.out.println(it); //java.util.LinkedList$ListItr@de6ced
										//java.util.AbstractList$Itr@de6ced
		
		//2.开始调用方法,完成遍历,迭代。
		//while循环
		/*
		while(it.hasNext()){
			Object element = it.next();
			System.out.println(element); //100 3.14 false
		}
		*/
		
		/*
			boolean b = it.hasNext(); 判断是否有更多的元素,如果有返回true
			Object o = it.next(); 将迭代器向下移动一位,并且取出指向的元素.
			
			原则:调用it.next()方法之前必须调用it.hasNext();
		*/
		
		
		//for循环
		for(Iterator it = c.iterator();it.hasNext();){
			Object o = it.next();
			System.out.println(o);
		}
		
		
	}
}


本文出自 “gaogaozi” 博客,请务必保留此出处http://hangtiangazi.blog.51cto.com/8584103/1669544

collection的iterator()方法

标签:iterator

原文地址:http://hangtiangazi.blog.51cto.com/8584103/1669544

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