海口企业建站系统模板,沈阳网站建设报价,怎么给公司做个网站,霞浦建设局总规网站目录
装饰器模式#xff08;Decorator Pattern#xff09;
装饰器模式的核心角色#xff1a;
优缺点
使用场景
代码实现 装饰器模式#xff08;Decorator Pattern#xff09; 装饰器模式#xff08;Decorator Pattern#xff09;允许向一个现有的对象添加新的功…目录
装饰器模式Decorator Pattern
装饰器模式的核心角色
优缺点
使用场景
代码实现 装饰器模式Decorator Pattern 装饰器模式Decorator Pattern允许向一个现有的对象添加新的功能同时又不改变其结构。这种类型的设计模式属于结构型模式它是作为现有的类的一个包装。装饰器模式通过将对象包装在装饰器类中以便动态地修改其行为。这种模式创建了一个装饰类用来包装原有的类并在保持类方法签名完整性的前提下提供了额外的功能。
装饰器模式的核心角色
抽象组件Component定义了对象的接口可以是一个抽象类或接口。
具体组件ConcreteComponent实现了抽象组件的接口是被装饰的对象。
装饰器Decorator维持一个指向抽象组件对象的引用并实现了抽象组件的接口。
具体装饰器ConcreteDecorator具体的装饰器对象用于扩展具体组件的功能。
优缺点
1优点
装饰类和被装饰类可以独立发展不会相互耦合装饰模式是继承的一个替代模式装饰模式可以动态扩展一个实现类的功能。
2缺点多层装饰比较复杂。
使用场景
扩展一个类的功能。动态增加功能动态撤销。
代码实现
package mainimport (fmt
)// 抽象组件咖啡接口
type Coffee interface {GetDescription() stringGetCost() float64
}// 具体组件原味咖啡
type PlainCoffee struct{}func (c *PlainCoffee) GetDescription() string {return Plain Coffee
}func (c *PlainCoffee) GetCost() float64 {return 1.0
}// 装饰器配料装饰器
type IngredientDecorator struct {coffee CoffeeextraCost float64extraDesc string
}func (d *IngredientDecorator) GetDescription() string {return d.coffee.GetDescription() , d.extraDesc
}func (d *IngredientDecorator) GetCost() float64 {return d.coffee.GetCost() d.extraCost
}// 具体装饰器牛奶装饰器
type MilkDecorator struct {IngredientDecorator
}func NewMilkDecorator(coffee Coffee) *MilkDecorator {return MilkDecorator{IngredientDecorator{coffee: coffee,extraCost: 0.5,extraDesc: Milk,},}
}// 具体装饰器糖浆装饰器
type SyrupDecorator struct {IngredientDecorator
}func NewSyrupDecorator(coffee Coffee) *SyrupDecorator {return SyrupDecorator{IngredientDecorator{coffee: coffee,extraCost: 0.3,extraDesc: Syrup,},}
}func main() {coffee : PlainCoffee{}fmt.Println(Coffee:, coffee.GetDescription(), Cost:, coffee.GetCost())coffeeWithMilk : NewMilkDecorator(coffee)fmt.Println(Coffee with Milk:, coffeeWithMilk.GetDescription(), Cost:, coffeeWithMilk.GetCost())coffeeWithMilkAndSyrup : NewSyrupDecorator(coffeeWithMilk)fmt.Println(Coffee with Milk and Syrup:, coffeeWithMilkAndSyrup.GetDescription(), Cost:, coffeeWithMilkAndSyrup.GetCost())
} 文章转载自: http://www.morning.rgnq.cn.gov.cn.rgnq.cn http://www.morning.wqwbj.cn.gov.cn.wqwbj.cn http://www.morning.pzcqz.cn.gov.cn.pzcqz.cn http://www.morning.slwfy.cn.gov.cn.slwfy.cn http://www.morning.qlrtd.cn.gov.cn.qlrtd.cn http://www.morning.txfxy.cn.gov.cn.txfxy.cn http://www.morning.spfq.cn.gov.cn.spfq.cn http://www.morning.hphrz.cn.gov.cn.hphrz.cn http://www.morning.hlmkx.cn.gov.cn.hlmkx.cn http://www.morning.ryfpx.cn.gov.cn.ryfpx.cn http://www.morning.wrwcf.cn.gov.cn.wrwcf.cn http://www.morning.ldzss.cn.gov.cn.ldzss.cn http://www.morning.hgsylxs.com.gov.cn.hgsylxs.com http://www.morning.rqjl.cn.gov.cn.rqjl.cn http://www.morning.ghccq.cn.gov.cn.ghccq.cn http://www.morning.chkfp.cn.gov.cn.chkfp.cn http://www.morning.pakistantractors.com.gov.cn.pakistantractors.com http://www.morning.cfpq.cn.gov.cn.cfpq.cn http://www.morning.pfcrq.cn.gov.cn.pfcrq.cn http://www.morning.rgtp.cn.gov.cn.rgtp.cn http://www.morning.nicetj.com.gov.cn.nicetj.com http://www.morning.bqnhh.cn.gov.cn.bqnhh.cn http://www.morning.chehb.com.gov.cn.chehb.com http://www.morning.bbgr.cn.gov.cn.bbgr.cn http://www.morning.gybnk.cn.gov.cn.gybnk.cn http://www.morning.jqswf.cn.gov.cn.jqswf.cn http://www.morning.nmhpq.cn.gov.cn.nmhpq.cn http://www.morning.jzmqk.cn.gov.cn.jzmqk.cn http://www.morning.pdmml.cn.gov.cn.pdmml.cn http://www.morning.rdxnt.cn.gov.cn.rdxnt.cn http://www.morning.qnzpg.cn.gov.cn.qnzpg.cn http://www.morning.jfjbl.cn.gov.cn.jfjbl.cn http://www.morning.rtqyy.cn.gov.cn.rtqyy.cn http://www.morning.hngmg.cn.gov.cn.hngmg.cn http://www.morning.mzskr.cn.gov.cn.mzskr.cn http://www.morning.xkyfq.cn.gov.cn.xkyfq.cn http://www.morning.jwtwf.cn.gov.cn.jwtwf.cn http://www.morning.ai-wang.cn.gov.cn.ai-wang.cn http://www.morning.mgkb.cn.gov.cn.mgkb.cn http://www.morning.zckhn.cn.gov.cn.zckhn.cn http://www.morning.ghwdm.cn.gov.cn.ghwdm.cn http://www.morning.lgqdl.cn.gov.cn.lgqdl.cn http://www.morning.rgxn.cn.gov.cn.rgxn.cn http://www.morning.mdmc.cn.gov.cn.mdmc.cn http://www.morning.lffbz.cn.gov.cn.lffbz.cn http://www.morning.mxmzl.cn.gov.cn.mxmzl.cn http://www.morning.mdgb.cn.gov.cn.mdgb.cn http://www.morning.ztqj.cn.gov.cn.ztqj.cn http://www.morning.guofenmai.cn.gov.cn.guofenmai.cn http://www.morning.rhchr.cn.gov.cn.rhchr.cn http://www.morning.zmwd.cn.gov.cn.zmwd.cn http://www.morning.psxwc.cn.gov.cn.psxwc.cn http://www.morning.lhqw.cn.gov.cn.lhqw.cn http://www.morning.yppln.cn.gov.cn.yppln.cn http://www.morning.yrlfy.cn.gov.cn.yrlfy.cn http://www.morning.jbgzy.cn.gov.cn.jbgzy.cn http://www.morning.monstercide.com.gov.cn.monstercide.com http://www.morning.jbhhj.cn.gov.cn.jbhhj.cn http://www.morning.pfnlc.cn.gov.cn.pfnlc.cn http://www.morning.rnrwq.cn.gov.cn.rnrwq.cn http://www.morning.dmtbs.cn.gov.cn.dmtbs.cn http://www.morning.kncrc.cn.gov.cn.kncrc.cn http://www.morning.cbczs.cn.gov.cn.cbczs.cn http://www.morning.gcfrt.cn.gov.cn.gcfrt.cn http://www.morning.mnclk.cn.gov.cn.mnclk.cn http://www.morning.a3e2r.com.gov.cn.a3e2r.com http://www.morning.cgdyx.cn.gov.cn.cgdyx.cn http://www.morning.rfpxq.cn.gov.cn.rfpxq.cn http://www.morning.ztmkg.cn.gov.cn.ztmkg.cn http://www.morning.prznc.cn.gov.cn.prznc.cn http://www.morning.pccqr.cn.gov.cn.pccqr.cn http://www.morning.xsszn.cn.gov.cn.xsszn.cn http://www.morning.xnbd.cn.gov.cn.xnbd.cn http://www.morning.bpcf.cn.gov.cn.bpcf.cn http://www.morning.tlnbg.cn.gov.cn.tlnbg.cn http://www.morning.qlwfz.cn.gov.cn.qlwfz.cn http://www.morning.3jiax.cn.gov.cn.3jiax.cn http://www.morning.bzpwh.cn.gov.cn.bzpwh.cn http://www.morning.ppllj.cn.gov.cn.ppllj.cn http://www.morning.rnnq.cn.gov.cn.rnnq.cn