1. 程式人生 > >Java自定義實現迭代器

Java自定義實現迭代器

簡化迭代器原理

package cn.bjsxt.interator;
/**
 * 簡化迭代器原理
 * hasNext
 * next
 * @author Administrator
 *
 */
public class MyArrayList {
	private String[] elem = {"a","b","c","d","e","f","g"};
	private int size = elem.length;
	private int curror = -1;
	
	/**
	 * 判斷是否存在下一個元素
	 * @return
	 */
	public boolean hasNext() {
		return curror+1 < size; //指向下一個元素 
	}
	
	/**
	 * 獲取下一個元素
	 */
	public String next() {
		curror++;         //移動一次
		return elem[curror];
	}
	
	
	public static void main(String[] args) {
		MyArrayList list = new MyArrayList();
		while(list.hasNext()) {
			System.out.println(list.next());
		}
	}
	
}

簡化迭代器原理 加入介面 提供方法

package cn.bjsxt.interator;

import java.util.Iterator;

/**
 * 簡化迭代器原理 加入介面 提供方法
 * hasNext
 * next
 * @author Administrator
 *
 */

public class MyArrayList implements java.lang.Iterable<String> {
	private String[] elem = {"a","b","c","d","e","f","g"};
	private int size = elem.length;
	
	
	/**
	 * 匿名內部類
	 * @return
	 */	
	public Iterator<String> iterator(){
		return new Iterator<String>(){
			
			private int curror = -1;
			
			public boolean hasNext() {
				return curror+1 < size;
			}
			
			public String next() {
				curror++;
				return elem[curror];
			}
		};          //不要忘記分號
	}
	
	
	
	public static void main(String[] args) {
		MyArrayList list = new MyArrayList();
		Iterator<String> it = list.iterator();
		while(it.hasNext()) {
			System.out.println(it.next());
		}
		
		System.out.println("增強for,必須實現java.lang.Iterable介面,重寫iterator方法");
		for(String temp:list) {  //增加了java.lang.Iterable<String記得檢視
			System.out.println(temp);   //不考慮下標時使用增強for
		} 
	}
	
}
//例項

package cn.bjsxt.col;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;

/**
 *
新增元素 C
boolean add(E e)   
檢視元素 R
size() 返回容器大小
contains(Object o) 判斷是否存在元素 建議重寫equals比較內容
isEmpty()  判斷容器是否為空
刪除元素 D
remove(Object o) 刪除指定的元素,建議自定義型別重寫equals
clear()  清空容器
其他方法:toArray()  toArray(T[] a) 

遍歷:檢視整個容器
foreach
iterator() 迭代器
沒有通過下標訪問的for





 * @author Administrator
 *
 */
public class CollectionDemo01 {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		//多型 :共性 看不到新增方法
		Collection<String> col =new ArrayList<String>();
		create(col);
		retrieve(col);
		delete(col);
		
		System.out.println(col.size());
		
		
		create(col);
		String[] arr =col.toArray(new String[0]);
		System.out.println(arr.length);
		System.out.println(arr[0]);
		iterCol(col);
		
	}
	/**
	 * 遍歷容器
	 */
	public static void iterCol(Collection<String> col){
		System.out.println("=========增強for foreach 不考慮下標======");
		for(String temp:col){
			System.out.println(temp);
		}
		System.out.println("=========迭代器======");
		Iterator<String>  it =col.iterator();
		while(it.hasNext()){
			String temp =it.next();
			System.out.println(temp);
		}
	}
	
	
	/**
	 *刪除
	 * 1、remove(物件)
	 * 2、clear() 清空容器
	 * @param col
	 */
	public static void delete(Collection<String> col){
		boolean flag =col.remove("日本");
		System.out.println(flag);
		col.clear();
	}
	/**
	 * 檢視
	 * 1、大小
	 * 2、檢視
	 * 3、是否為空
	 * @param col
	 */
	public static void retrieve(Collection<String> col){
		System.out.println("容器的大小:"+col.size());
		System.out.println("檢視"+col.contains("美國"));
		System.out.println("容器是否存在元素"+col.isEmpty());
	}
	/**
	 * 新增元素
	 * 1、在容器最後新增
	 * @param col
	 */
	public static void create(Collection<String> col){
		col.add("美國");
		col.add("中國");
		
	}

}

介面例項

package cn.bjsxt.col;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;

/**
 * 新增若干個員工,求出員工的總工資,平均工資
 * @author Administrator
 *
 */
public class CollectionDemo02 {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		Collection<Employee> co=new ArrayList<Employee>();
		Employee ee = new Employee("老馬",199999);
		co.add(ee);
		co.add(ee);
		co.add(new Employee("老高",99999));
		co.add(new Employee("老裴",1099999));
		
		//遍歷
		Iterator<Employee> it = co.iterator();
		double total =0.0;
		while(it.hasNext()){
			Employee temp = it.next();
			total +=temp.getSalary();
		}
		int size =co.size();
		System.out.println(size);
		System.out.println("總工資為:"+total+",平均薪水"+total/size);
		
	}

}