AbstractClass.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.  */
  7. public abstract class AbstractClass {
  8. //基本方法
  9. protected abstract void doSomething();
  10. //基本方法
  11. protected abstract void doAnything();
  12. //模版方法
  13. public void templateMethod(){
  14. /*
  15.  * 调用基本方法,完成相关的逻辑
  16.  */
  17. this.doAnything();
  18. this.doSomething();
  19. }
  20. }