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

软件工程

开发平台:

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 Beggar extends EventCustomer {
  7. //只能处理被人遗弃的东西
  8. public Beggar(){
  9. super(EventCustomType.DEL);
  10. }
  11. @Override
  12. public void exec(ProductEvent event) {
  13. //事件的源头
  14. Product p = event.getSource();
  15. //事件类型
  16. ProductEventType type = event.getEventType();
  17. System.out.println("乞丐处理事件:"+p.getName() +"销毁,事件类型="+type);
  18. }
  19. }