設計模式c#描述——裝飾(Decorator)模

來源:互聯網
上載者:User
設計 設計模式c#語言描述——裝飾(Decorator)模式



*本文參考了《JAVA與模式》的部分內容,適合於設計模式的初學者。



裝飾模式又名封裝模式,以對用戶端透明的方式擴充項物件的功能,是繼承關係的一個替代方案。它使用原來被裝飾的類的一個子類的執行個體,把用戶端的調用委派到被裝飾類,用戶端並不會覺得對象在裝飾前和裝飾後有什麼不同。在以下情況下應使用裝飾模式:需要擴充一個類的功能,或給一個類增加附加責任。動態地給一個對象增加功能,這些功能可以再動態地撤銷。需要增加由一些準系統的排列組合而產生的非常大量的功能,從而使繼承關係變得不現實。



類圖如下所示:






裝飾模式包括如下角色:

抽象構件(Component):給出一個抽象介面,以規範準備接收附加責任的對象。

具體構件(Concrete Component):定義一個將要接收附加責任的類。

裝飾(Decorator):持有一個構件對象的執行個體,並定義一個與抽象構件介面一致的介面。

具體裝飾(Concrete Decorator):負責給構件對象“貼上”附加的責任。



Component:

public interface Component

{

void sampleOperation();

}// END INTERFACE DEFINITION Component



Decorator:

public class Decorator : Component

{

private Component component;



public Decorator(Component component)

{

this.component=component;

}



public virtual void sampleOperation()

{

component.sampleOperation();

}



}// END CLASS DEFINITION Decorator



ConcreteComponent:

public class ConcreteComponent : Component

{



public void sampleOperation()

{

Console.WriteLine ("ConcreteComponent sampleOperation");

}



}// END CLASS DEFINITION ConcreteComponent



ConcreteDecorator1:

public class ConcreteDecorator1 : Decorator

{



public ConcreteDecorator1(Component component):base(component)

{



}

override public void sampleOperation()

{

base.sampleOperation ();

Console.WriteLine ("ConcreteDecorator1 sampleOperation");

}



}// END CLASS DEFINITION ConcreteDecorator1



ConcreteDecorator2:

public class ConcreteDecorator2 : Decorator

{

public ConcreteDecorator2 (Component component):base(component)

{

}

override public void sampleOperation()

{

base.sampleOperation ();

Console.WriteLine ("ConcreteDecorator2 sampleOperation");

}



}// END CLASS DEFINITION ConcreteDecorator2



Client:

static void Main(string[] args)

{

Component component=new ConcreteComponent ();

Component concretedecorator1=new ConcreteDecorator1 (component); // 封裝

Component concretedecorator2=new ConcreteDecorator2 (concretedecorator1);



concretedecorator2.sampleOperation ();

}



程式輸出如下:

ConcreteComponent sampleOperation

ConcreteDecorator1 sampleOperation

ConcreteDecorator2 sampleOperation


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.