裝飾器模式

2021-09-28 11:25:40 字數 866 閱讀 3650

動態地給乙個物件新增一些額外的職責。就增加功能來說,d e c o r a t o r 模式相比生成子類更為靈活

concretecomponent類是被裝飾類,decorator是裝飾類,**如下:

component 類

package com.decorator;

public

inte***ce

component

concretecomponent 類

package com.decorator;

public

class

concretecomponent

implements

component

}

decorator 類

package com.decorator;

public

class

decorator

implements

component

@override

public

void

operation()

}

decoratortest 類

package com.decorator;

public

class

decoratortest

}

執行結果

before decorator

this is the original operation

after decorator

裝飾器模式

大話設計模式 裝飾器模式 為已有功能動態地新增更多功能,當系統需要新功能,向舊的類中新增新功能,裝飾了原有類的核心職責和行為,而不改變它們 就像包裝袋一樣,有 的包裝袋包裝之前裝好東西的包裝袋 ifndef clothes h define clothes h include using names...

裝飾器模式

裝飾器設計模式 對真實物件動態的新增功能 抽象元件 author zhangjianbin public inte ce icar 俱體構件物件 真實的物件 author zhangjianbin class car implements icar 裝飾器物件 author zhangjianbin...

裝飾器模式

一 概念 裝飾模式能夠實現動態的為物件新增功能,是從乙個物件外部來給物件新增功能。通常給物件新增功能,要麼直接修改物件新增相應的功能,要麼派生對應的子類來擴充套件,抑或是使用物件組合的方式。顯然,直接修改對應的類這種方式並不可取。在物件導向的設計中,而我們也應該 盡量使用物件組合,而不是物件繼承來擴...