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

软件工程

开发平台:

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 Client {
  8. public static void main(String[] args) {
  9. for(int i=0;i<10;i++){
  10. //获得元素对象
  11. Element el = ObjectStruture.createElement();
  12. //接受访问者访问
  13. el.accept(new Visitor());
  14. }
  15. }
  16. }