模板模式

模板模式

viEcho Lv5

具体代码见LocalDemo之shejimoshi模块

模板模式是在抽象父类中公开定义方法,可以将一些通用的方法封装在这个方法中,子类可以根据需要来覆盖重写父类中的方法;如果想限定哪些方法子类不可重新,则将其方法声明为final修饰;

  • Title: 模板模式
  • Author: viEcho
  • Created at : 2024-01-10 00:00:00
  • Updated at : 2025-02-21 18:23:16
  • Link: https://viecho.github.io/2024/0110/template-mode.html
  • License: This work is licensed under CC BY-NC-SA 4.0.
Comments
On this page
模板模式