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

软件工程

开发平台:

Java

  1. package com.company.section3;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class Client {
  7. public static void main(String[] args) {
  8. //声明出容器
  9. Aggregate agg = new ConcreteAggregate();
  10. //产生对象数据放进去
  11. agg.add("abc");
  12. agg.add("aaa");
  13. agg.add("1234");
  14. //遍历一下
  15. Iterator iterator = agg.iterator();
  16. while(iterator.hasNext()){
  17. System.out.println(iterator.next());
  18. }
  19. }
  20. }