Skip to content

Latest commit

 

History

History
4 lines (4 loc) · 251 Bytes

File metadata and controls

4 lines (4 loc) · 251 Bytes

代码重复:搞定代码重复的三个绝招

  • 利用工厂模式+模板方法模式,消除if...else和重复代码:templatemethod
  • 利用注解+反射消除重复代码:reflection
  • 利用属性拷贝工具消除重复代码:beancopy