ConcreteAggregate.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section3;
  2. import java.util.Vector;
  3. /**
  4.  * @author cbf4Life cbf4life@126.com
  5.  * I'm glad to share my knowledge with you all.
  6.  */
  7. public class ConcreteAggregate implements Aggregate {
  8. //容纳对象的容器
  9. private Vector vector = new Vector();
  10. //增加一个元素
  11. public void add(Object object) {
  12. this.vector.add(object);
  13. }
  14. //返回迭代器对象
  15. public Iterator iterator() {
  16. return new ConcreteIterator(this.vector);
  17. }
  18. //删除一个元素
  19. public void remove(Object object) {
  20. this.remove(object);
  21. }
  22. }