設計模式筆記————橋接模式

橋接模式:將抽象部分與它的實現部分分離,使它們都可以獨立地變化。 Implementor類 public abstract class Implementor { public abstract void Operation(); } ConcreteImplementor派生類 public class ConcreteImplmentorA extends Implementor {
相關文章
相關標籤/搜索