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

软件工程

开发平台:

Java

  1. package com.company.section2;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  * 学校排名的情况汇报
  6.  */
  7. public class SortDecorator extends Decorator {
  8. //构造函数
  9. public SortDecorator(SchoolReport sr){
  10. super(sr);
  11. }
  12. //告诉老爸学校的排名情况
  13. private void reportSort(){
  14. System.out.println("我是排名第38名...");
  15. }
  16. //老爸看完成绩单后再告诉他,加强作用
  17. @Override
  18. public void report(){
  19. super.report();
  20. this.reportSort();
  21. }
  22. }