mirror of
https://github.com/crazybber/go-pattern-examples.git
synced 2024-11-22 11:56:03 +03:00
finish decorator pattern
This commit is contained in:
parent
9b04af4b6a
commit
2dd4c5aee1
@ -1,5 +1,11 @@
|
|||||||
# 装饰模式
|
# 装饰模式
|
||||||
|
|
||||||
装饰模式就是比较简单了,就是在不改变原有对象和类型的情况下,对其进行装饰,扩展,以达到公共强化和扩展的目的,装饰模式的目的是在原有功能或者能力的基础上提供额外的更多的能力和特性,这一点和代理模式、复合模式是有很大不同的,了解每一种模式,重点是要了解这个模式的最初的设计者应用场景和其解决目的,以便加以利用。
|
装饰模式就是比较简单了,其目的是在不改变原有类型对象的情况下,对其进行装饰,扩展,以达到公共强化和扩展的目的。
|
||||||
|
|
||||||
|
装饰模式的目的是在原有功能或者能力的基础上提供额外的更多的能力和特性,这一点和代理模式、复合模式是有很大不同的,了解每一种模式,重点是要了解这个模式的最初的设计者应用场景和其解决目的,以便加以利用。
|
||||||
|
|
||||||
Go语言借助于匿名组合和非入侵式接口可以很方便实现装饰模式。使用匿名组合,在装饰器中不必显式定义转调原对象方法。
|
Go语言借助于匿名组合和非入侵式接口可以很方便实现装饰模式。使用匿名组合,在装饰器中不必显式定义转调原对象方法。
|
||||||
|
|
||||||
|
现实生活中例子就太多了,可以想一下带 "装饰"的东西,车子不漂亮,搞个车贴,脸不好看,化个妆,屋墙不好看,贴个墙纸。
|
||||||
|
|
||||||
|
都是在在不改变原有东西的情况下,做一些扩展和强化。
|
||||||
|
@ -1,43 +1,43 @@
|
|||||||
package decorator
|
package decorator
|
||||||
|
|
||||||
type Component interface {
|
////////////////////////////////
|
||||||
Calc() int
|
//拿化妆做例子
|
||||||
|
|
||||||
|
//IFaceLooks 脸部的颜值
|
||||||
|
type IFaceLooks interface {
|
||||||
|
FaceLooks() int
|
||||||
}
|
}
|
||||||
|
|
||||||
type ConcreteComponent struct{}
|
//NatureGirl 天然无化妆的小姐姐
|
||||||
|
type NatureGirl struct {
|
||||||
func (*ConcreteComponent) Calc() int {
|
faceValue int
|
||||||
return 0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type MulDecorator struct {
|
//FaceLooks 获取小姐姐的颜值
|
||||||
Component
|
func (n *NatureGirl) FaceLooks() int {
|
||||||
num int
|
return n.faceValue
|
||||||
}
|
}
|
||||||
|
|
||||||
func WarpMulDecorator(c Component, num int) Component {
|
//GirlWithMakeups 化妆后的小姐姐
|
||||||
return &MulDecorator{
|
type GirlWithMakeups struct {
|
||||||
Component: c,
|
origin IFaceLooks //这就是那个自然美的小姐姐
|
||||||
num: num,
|
facePlus int //脸部加成,说,你想化成什么样子吧。
|
||||||
|
}
|
||||||
|
|
||||||
|
//NewGirlWithMakeup 返回一个化妆后的小姐姐
|
||||||
|
func NewGirlWithMakeup(origin IFaceLooks, facePlus int) IFaceLooks {
|
||||||
|
return &GirlWithMakeups{
|
||||||
|
origin: origin,
|
||||||
|
facePlus: facePlus,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *MulDecorator) Calc() int {
|
//FaceLooks 我要开始化妆了..
|
||||||
return d.Component.Calc() * d.num
|
func (g *GirlWithMakeups) FaceLooks() int {
|
||||||
|
return g.origin.FaceLooks() + g.facePlus
|
||||||
}
|
}
|
||||||
|
|
||||||
type AddDecorator struct {
|
//FaceReal 实际的颜值..
|
||||||
Component
|
func (g *GirlWithMakeups) FaceReal() int {
|
||||||
num int
|
return g.origin.FaceLooks()
|
||||||
}
|
|
||||||
|
|
||||||
func WarpAddDecorator(c Component, num int) Component {
|
|
||||||
return &AddDecorator{
|
|
||||||
Component: c,
|
|
||||||
num: num,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *AddDecorator) Calc() int {
|
|
||||||
return d.Component.Calc() + d.num
|
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,22 @@
|
|||||||
package decorator
|
package decorator
|
||||||
|
|
||||||
import "fmt"
|
import (
|
||||||
|
"fmt"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
func ExampleDecorator() {
|
func TestDecorateNatureGirl(t *testing.T) {
|
||||||
var c Component = &ConcreteComponent{}
|
|
||||||
c = WarpAddDecorator(c, 10)
|
//准备天然的妹子一枚
|
||||||
c = WarpMulDecorator(c, 8)
|
origin := &NatureGirl{faceValue: 6}
|
||||||
res := c.Calc()
|
|
||||||
|
fmt.Println("face looks ", origin.FaceLooks())
|
||||||
|
|
||||||
|
//只需要略施粉黛
|
||||||
|
makeupGirl := NewGirlWithMakeup(origin, 2)
|
||||||
|
|
||||||
|
fmt.Println("after makeup face looks ", makeupGirl.FaceLooks())
|
||||||
|
|
||||||
|
fmt.Println("girl's real face ", makeupGirl.(*GirlWithMakeups).FaceReal())
|
||||||
|
|
||||||
fmt.Printf("res %d\n", res)
|
|
||||||
// Output:
|
|
||||||
// res 80
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user