Iterator(3)--Interface

禄星腾
2023-12-01

如果想将上面两篇中的ArrayList和LinkedList两个容器中的方法进行一下统一的话就得用到Interface,下面来看一下代码:

1.首先定义一个接口类:

<span style="font-size:14px;">public interface Collection {
	void add(Object o);
	int size();
	//Iterator iterator();
}</span>

2.ArrayList 和 LinkList分别继承Colletcion:

只需要在上篇文章中稍作修改:(1)public class ArrayList implements Collection

 (2)public class LinkedList implements Collection


3.在test.java中改为:Collection c=new ArrayList();


4.这下只需要给Collection对象赋值不同的子类对象就可以了,然后去调用Interface中的方法就可以了。

 类似资料: