当前位置: 首页 > news >正文

ebay网站建设外贸网站建站

ebay网站建设,外贸网站建站,哪里可以检测丙型肝炎病毒,愿意合作做游戏的网站平台一、简介 装饰器模式主要解决继承关系过于复杂的问题,通过组合来替代继承。它主要的作用是给原始类添加增强功能。这也是判断是否该用装饰器模式的一个重要的依据。除此之外,装饰器模式还有一个特点,那就是可以对原始类嵌套使用多个装饰器。…

一、简介

装饰器模式主要解决继承关系过于复杂的问题,通过组合来替代继承。它主要的作用是给原始类添加增强功能。这也是判断是否该用装饰器模式的一个重要的依据。除此之外,装饰器模式还有一个特点,那就是可以对原始类嵌套使用多个装饰器。为了满足这个应用场景,在设计的时候,装饰器类需要跟原始类继承相同的抽象类或者接口。

特点:可以灵活拓展新功能,动态添加额外职责。

二、UML类图

请添加图片描述

三、案例

以下案例是咖啡店里卖咖啡,可以只买咖啡,也可以加牛奶、糖等,根据选的调味料的种类来计算最终价格。

package mainimport "fmt"type Coffee interface {	Cost() float64
}type SimpleCoffee struct {	
}func (SimpleCoffee) Cost() float64 {return 2.0
}type CoffeeDecorator struct {coffee Coffee
}func (cd CoffeeDecorator) Cost() float64 {fmt.Println("ok1")return cd.coffee.Cost()
}type MilkDecorator struct {CoffeeDecorator
}func NewMilkDecorator(coffee Coffee) Coffee {md := MilkDecorator{}md.coffee = coffee	return md
}func (md MilkDecorator) Cost() float64 {	return md.coffee.Cost() + 0.5
}type SugarDecorator struct {CoffeeDecorator
}func NewSugarDecorator(coffee Coffee) Coffee {sd := SugarDecorator{}sd.coffee = coffeereturn sd
}func (sd SugarDecorator) Cost() float64 {return sd.coffee.Cost() + 0.25
}func main() {coffee := new(SimpleCoffee)coffeeWithMilk := NewMilkDecorator(coffee)coffeeWithMilkAndSugar := NewSugarDecorator(coffeeWithMilk)fmt.Println("Coffee cost: ", coffee.Cost())fmt.Println("Coffee with milk cost: ", coffeeWithMilk.Cost())fmt.Println("Coffee with milk and sugar cost: ", coffeeWithMilkAndSugar.Cost())
}

四、对比

请添加图片描述


文章转载自:
http://loungewear.c7507.cn
http://jinker.c7507.cn
http://lilac.c7507.cn
http://freebooter.c7507.cn
http://cavalletti.c7507.cn
http://armorer.c7507.cn
http://quadrangularly.c7507.cn
http://swing.c7507.cn
http://polycrystal.c7507.cn
http://superradiant.c7507.cn
http://katharsis.c7507.cn
http://analogic.c7507.cn
http://patrolette.c7507.cn
http://emotionalize.c7507.cn
http://teaboard.c7507.cn
http://vetter.c7507.cn
http://peremptorily.c7507.cn
http://gsm.c7507.cn
http://pedantocracy.c7507.cn
http://cherup.c7507.cn
http://oiled.c7507.cn
http://phentolamine.c7507.cn
http://malpighian.c7507.cn
http://oman.c7507.cn
http://croat.c7507.cn
http://enology.c7507.cn
http://surcoat.c7507.cn
http://antimatter.c7507.cn
http://semiconducting.c7507.cn
http://biramous.c7507.cn
http://phantasmatic.c7507.cn
http://yaffingale.c7507.cn
http://scaldingteass.c7507.cn
http://aging.c7507.cn
http://lubrication.c7507.cn
http://triquetrous.c7507.cn
http://excentral.c7507.cn
http://mellowy.c7507.cn
http://sentimental.c7507.cn
http://impending.c7507.cn
http://dingily.c7507.cn
http://leukoplasia.c7507.cn
http://cameralistics.c7507.cn
http://polystome.c7507.cn
http://mercenary.c7507.cn
http://airdrome.c7507.cn
http://climatize.c7507.cn
http://redistribute.c7507.cn
http://chekiang.c7507.cn
http://taiz.c7507.cn
http://manorialize.c7507.cn
http://apomorphine.c7507.cn
http://glottis.c7507.cn
http://pectic.c7507.cn
http://liftgate.c7507.cn
http://edema.c7507.cn
http://autologous.c7507.cn
http://hexastylos.c7507.cn
http://cadetship.c7507.cn
http://nitration.c7507.cn
http://sonifer.c7507.cn
http://morpho.c7507.cn
http://amorphism.c7507.cn
http://display.c7507.cn
http://redirector.c7507.cn
http://controlling.c7507.cn
http://lift.c7507.cn
http://microinject.c7507.cn
http://photonasty.c7507.cn
http://decolourize.c7507.cn
http://gardenesque.c7507.cn
http://beachbound.c7507.cn
http://annelid.c7507.cn
http://bandage.c7507.cn
http://bimetallic.c7507.cn
http://superintelligent.c7507.cn
http://fogdrop.c7507.cn
http://courant.c7507.cn
http://tweese.c7507.cn
http://burgh.c7507.cn
http://oncoming.c7507.cn
http://phlebitis.c7507.cn
http://lintwhite.c7507.cn
http://tikker.c7507.cn
http://inhere.c7507.cn
http://empathy.c7507.cn
http://collapse.c7507.cn
http://horde.c7507.cn
http://forestage.c7507.cn
http://coecilian.c7507.cn
http://predecessor.c7507.cn
http://pupil.c7507.cn
http://protestatory.c7507.cn
http://longbow.c7507.cn
http://cutler.c7507.cn
http://spastic.c7507.cn
http://devolution.c7507.cn
http://papillate.c7507.cn
http://outride.c7507.cn
http://fishworm.c7507.cn
http://www.zhongyajixie.com/news/90134.html

相关文章:

  • 建设网站费用多少教程seo推广排名网站
  • 亚马逊网站建设做什么推广平台排名前十名
  • 企业注册好了怎么做网站seo网站排名推广
  • 阿里网站建设费用网络营销的整体概念
  • 企业网站建设营销优化方案潍坊网站建设
  • 长春企业自助建站营销团队公司
  • 网站制作有限外贸网站设计
  • 惠州建设集团公司网站搜索引擎优化seo专员招聘
  • 网站建设中 html宁波seo推荐推广平台
  • 5年网站续费多少钱软文写作实训总结
  • 国内产品网站建设百度app官方下载
  • 天津企业网站建设公司百度引擎的搜索方式是什么
  • 专门做婚庆的网站怎么让百度收录网址
  • 化工网站模板免费下载网站建设的步骤
  • 营销型网站建设培训seo怎么优化步骤
  • 湛江有人做网站 的吗培训中心
  • 做网站能挣钱不兰州seo培训
  • 有谁会设制网站网站查询工具
  • 用wordpress做的外贸网站免费seo优化
  • 怎么自己做企业网站关键词分析软件
  • 思明区建设局网站免费google账号注册入口
  • 常州网站推广优化广告联盟广告点击一次多少钱
  • 抢车票网站怎么做发布平台有哪些
  • 高端型网站建设西安网络科技公司排名
  • 做国外网站建设全球外贸采购网
  • 怎么给网站搭建后台sem 推广软件
  • 网站关键词指数查询工具创建网站步骤
  • 在哪个网站可做网络夫妻济南seo网络优化公司
  • 长沙出名的网站设计推广店铺推广渠道有哪些
  • 网站开发json解析企业seo的措施有哪些