Visitor.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 Visitor implements IVisitor {
  7. //访问el1元素
  8. public void visit(ConcreteElement1 el1) {
  9. el1.doSomething();
  10. }
  11. //访问el2元素
  12. public void visit(ConcreteElement2 el2) {
  13. el2.doSomething();
  14. }
  15. }