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

珠海网站建设公司哪家好佛山官网建设

珠海网站建设公司哪家好,佛山官网建设,客户网站建设,山西教育学会的网站建设装饰模式装饰模型装饰模式示例商场收银程序#xff08;简单工厂策略装饰模式实现#xff09;装饰模式总结装饰模型 装饰模式#xff08;Decorator#xff09;#xff0c;动态地给一个对象添加一些额外的职责#xff0c;就增加功能来说#xff0c;装饰模式比生成子类更为… 装饰模式装饰模型装饰模式示例商场收银程序简单工厂策略装饰模式实现装饰模式总结装饰模型 装饰模式Decorator动态地给一个对象添加一些额外的职责就增加功能来说装饰模式比生成子类更为灵活。 Component 是定义一个对象接口可以给这些对象动态地添加职责。 ConcreateComponent 是定义了一个具体的对象也可以给这个对象添加一些职责。 Decorator装饰抽象类继承了 Component从外类来扩展 Component 类的功能但对应Component 来说是无须知道 Decorator的存在。 ConcreateDecorator 就是具体的装饰对象起到给 Component 添加职责的功能。 // Component类 abstract class Component {public abstract void Operation(); }// ConcreteComponent类 class ConcreteComponent extends Component {public void Operation() {System.out.println(具体对象的实际操作);} }//Decorator类 abstract class Decorator extends Component {protected Component component;//装饰一个Component对象public void SetComponent(Component component) {this.component component;}//重写Operation()实际调用component的Operation方法public void Operation() {if (component ! null) {component.Operation();}} }//ConcreteDecoratorA类 class ConcreteDecoratorA extends Decorator {//本类独有子段以区别于ConcreteDecoratorB类private String addedState;public void Operation() {//首先运行了原有Component的Operation()super.Operation();this.addedState 具体装饰对象A的独有操作;//再执行本类独有功能System.out.println(this.addedState);} } //ConcreteDecoratorB类 class ConcreteDecoratorB extends Decorator {public void Operation() {//首先运行了原有Component的Operation()super.Operation();//再执行本类独有功能this.AddedBehavior();}//本类独有方法以区别于ConcreteDecoratorA类private void AddedBehavior() { System.out.println(具体装饰对象B的独有操作);} } 客户端代码 public class Test {public static void main(String[] args){System.out.println(**********************************************); System.out.println(《大话设计模式》代码样例);System.out.println(); ConcreteComponent c new ConcreteComponent();ConcreteDecoratorA d1 new ConcreteDecoratorA();ConcreteDecoratorB d2 new ConcreteDecoratorB();//首先用d1来包装c扩展对象c的方法d1.SetComponent(c); //再用有来包装d1扩展对象d1的方法d2.SetComponent(d1);//最终执行d2的Operation()d2.Operation(); System.out.println();System.out.println(**********************************************);} }装饰模式利用SetComponent来对对象进行包装这样每个装饰对象的实现和如何使用这个对象分离开了每个装饰对象只关心自己的功能不需要关心如何被添加到对象链中。 如果只有一个ConcreteComponent 类而没有抽象的 Component 类那么 Decorator 类可以是 ConcreteComponent 的一个子类。 同样道理如果只要一个 ConcreteDecorator 类那么就没有必要建立一个单独的 Decorator 类而可以把 Decorator 和 ConcreteDecorator 的责任合并成一个类。 装饰模式示例 人物形象接口 public interface ICharacter {public void show(); }具体人类 public class Person implements ICharacter {private String name;public Person(String name) {this.name name;}public void show() {System.out.println(装扮的name);} }服饰类 public class Finery implements ICharacter {protected ICharacter component;public void decorate(ICharacter component) {this.componentcomponent;}public void show() {if (this.component ! null){this.component.show();}} }具体服饰类ConcreteDecorator public class LeatherShoes extends Finery {public void show(){System.out.print( 皮鞋);super.show();} } public class BigTrouser extends Finery {public void show(){System.out.print( 垮裤);super.show();} } public class TShirts extends Finery {public void show(){System.out.print( 大T恤);super.show();} } public class Tie extends Finery {public void show(){System.out.print( 领带);super.show();} } public class Suit extends Finery {public void show(){System.out.print( 西装);super.show();} } public class Strawhat extends Finery {public void show(){System.out.print( 草帽);super.show();} } public class Sneakers extends Finery {public void show(){System.out.print( 球鞋);super.show();} }客户端代码 public class Test {public static void main(String[] args){System.out.println(**********************************************); System.out.println(《大话设计模式》代码样例);System.out.println(); Person xc new Person(小菜);System.out.println( 第一种装扮);Sneakers pqx new Sneakers(); //生成球鞋实例pqx.decorate(xc); //球鞋装饰小菜BigTrouser kk new BigTrouser(); //生成垮裤实例kk.decorate(pqx); //垮裤装饰“有球鞋装饰的小菜”TShirts dtx new TShirts(); //生成T恤实例dtx.decorate(kk); //T恤装饰“有垮裤球鞋装饰的小菜”dtx.show(); //执行形象展示System.out.println( 第二种装扮);LeatherShoes px new LeatherShoes();//生成皮鞋实例px.decorate(xc); //皮鞋装饰小菜Tie ld new Tie(); //生成领带实例ld.decorate(px); //领带装饰“有皮鞋装饰的小菜”Suit xz new Suit(); //生成西装实例xz.decorate(ld); //西装装饰“有领带皮鞋装饰的小菜”xz.show(); //执行形象展示System.out.println( 第三种装扮);Sneakers pqx2 new Sneakers(); //生成球鞋实例pqx2.decorate(xc); //球鞋装饰小菜LeatherShoes px2 new LeatherShoes();//生成皮鞋实例px2.decorate(pqx2); //皮鞋装饰“有球鞋装饰的小菜”BigTrouser kk2 new BigTrouser(); //生成垮裤实例kk2.decorate(px2); //垮裤装饰“有皮鞋球鞋装饰的小菜”Tie ld2 new Tie(); //生成领带实例ld2.decorate(kk2); //领带装饰“有垮裤皮鞋球鞋装饰的小菜”Strawhat cm2 new Strawhat(); //生成草帽实例cm2.decorate(ld2); //草帽装饰“有领带垮裤皮鞋球鞋装饰的小菜”cm2.show(); //执行形象展示System.out.println();System.out.println(**********************************************);} }商场收银程序简单工厂策略装饰模式实现 ISale接口用作装饰模式里的 Component。 CashNormal 用作装饰模式里的 ConcreteComponent。 CashSuper 用作装饰模式里的 Decorator 。 CashReturn用作装饰模式里的 ConcreateDecorator 。 public interface ISale {public double acceptCash(double price,int num); }// 正常收费原价返回 public class CashNormal implements ISale {public double acceptCash(double price,int num){return price * num;} }public class CashSuper implements ISale {protected ISale component;//装饰对象public void decorate(ISale component) {this.componentcomponent;}public double acceptCash(double price,int num){var result 0d;if (this.component ! null){//若装饰对象存在则执行装饰的算法运算result this.component.acceptCash(price,num); }return result;} }public class CashRebate extends CashSuper {private double moneyRebate 1d;//打折收费。初始化时必需输入折扣率。八折就输入0.8public CashRebate(double moneyRebate){this.moneyRebate moneyRebate;}//计算收费时需要在原价基础上乘以折扣率public double acceptCash(double price,int num){double result price * num * this.moneyRebate;return super.acceptCash(result,1);} }public class CashReturn extends CashSuper {private double moneyCondition 0d; //返利条件private double moneyReturn 0d; //返利值//返利收费。初始化时需要输入返利条件和返利值。//比如“满300返100”就是moneyCondition300,moneyReturn100public CashReturn(double moneyCondition,double moneyReturn){this.moneyCondition moneyCondition;this.moneyReturn moneyReturn;}//计算收费时当达到返利条件就原价减去返利值public double acceptCash(double price,int num){double result price * num;if (moneyCondition0 result moneyCondition)result result - Math.floor(result / moneyCondition) * moneyReturn; return super.acceptCash(result,1); } }public class CashContext {private ISale cs; //声明一个ISale接口对象 //通过构造方法传入具体的收费策略public CashContext(int cashType){switch(cashType){case 1:this.cs new CashNormal();break;case 2:this.cs new CashRebate(0.8d);break;case 3:this.cs new CashRebate(0.7d);break;case 4:this.cs new CashReturn(300d,100d);break;case 5://先打8折,再满300返100// 装饰模式CashNormal cn new CashNormal();CashReturn cr1 new CashReturn(300d,100d); CashRebate cr2 new CashRebate(0.8d);cr1.decorate(cn); //用满300返100算法包装基本的原价算法cr2.decorate(cr1); //打8折算法装饰满300返100算法this.cs cr2; //将包装好的算法组合引用传递给cs对象break;case 6://先满200返50再打7折// 装饰模式CashNormal cn2 new CashNormal();CashRebate cr3 new CashRebate(0.7d);CashReturn cr4 new CashReturn(200d,50d); cr3.decorate(cn2); //用打7折算法包装基本的原价算法cr4.decorate(cr3); //满200返50算法装饰打7折算法this.cs cr4; //将包装好的算法组合引用传递给cs对象break;}}public double getResult(double price,int num){// 根据收费策略的不同获得计算结果return this.cs.acceptCash(price,num);} }客户端代码 public class Test {public static void main(String[] args){System.out.println(**********************************************); System.out.println(《大话设计模式》代码样例);System.out.println(); int discount 0; //商品折扣模式double price 0d; //商品单价int num 0; //商品购买数量double totalPrices 0d;//当前商品合计费用double total 0d; //总计所有商品费用Scanner sc new Scanner(System.in);do {System.out.println(商品折扣模式如下:); System.out.println(1.正常收费); System.out.println(2.打八折); System.out.println(3.打七折); System.out.println(4.满300送100); System.out.println(5.先打8折再满300送100); System.out.println(6.先满200送50再打7折); System.out.println(请输入商品折扣模式:); discount Integer.parseInt(sc.nextLine());System.out.println(请输入商品单价); price Double.parseDouble(sc.nextLine());System.out.println(请输入商品数量); num Integer.parseInt(sc.nextLine());System.out.println(); if (price0 num0){//根据用户输入将对应的策略对象作为参数传入CashContext对象中CashContext cc new CashContext(discount);//通过Context的getResult方法的调用可以得到收取费用的结果//让具体算法与客户进行了隔离totalPrices cc.getResult(price,num);total total totalPrices;System.out.println(); System.out.println(单价 price 元 数量 num 合计 totalPrices 元); System.out.println();System.out.println(总计 total元); System.out.println();}}while(price0 num0);System.out.println();System.out.println(**********************************************);} }装饰模式总结 装饰模式是为已有功能动态地添加更多功能的一种方式。 当系统需要新功能的时候是向旧的类中添加新的代码。这些新加的代码通常装饰了原有类的核心职责或主要行为但这种做法的问题在于它们在主类中加入了新的字段新的方法和新的逻辑从而增加了主类的复杂度。 装饰模式却提供了一个非常好的解决方案它把每个要装饰的功能放在单独的类中并让这个类包装它所要装饰的对象因此当需要执行特殊行为时客户代码就可以在运行时根据需要有选择地、按顺序地使用装饰功能包装对象了。 把类中的装饰功能从类中搬移去除这样可以简化原有的类。这样做的好处就是有效地把类的核心职责和装饰功能区分开了。
http://www.hkea.cn/news/14558591/

相关文章:

  • 目前网站在初级建设阶段_需要大量数据丰富wordpress密码长度
  • 广告设计网站官网制作网络平台多少钱
  • 做火情监控网站需要用什么系统成都设计公司官网
  • 新手怎么做自己网站广告商标logo设计免费生成软件
  • 企业做的网站推广方案的步骤请问哪个网站可以做当地向导
  • 建设电子商务网站的必要性服务周到的网站建设
  • 福州网站开发fjfzwlwordpress默认头像不显示
  • 网站可以用什么做做一元购网站
  • 丽江网站开发个人建购物网站怎么备案
  • 营销型网站案例 注册公司wordpress个人收款
  • 高端的网站优化公司镇海淘宝网站建设
  • wordpress 企业网站无锡做网站多少钱
  • wordpress访问3秒以上湛江市seo网站设计哪里好
  • it公司做网站用什么软件图书建设网站
  • 葫芦岛市建设局网站百度怎么直接访问网址
  • 在阿里云做的网站怎么进后台唐山网站建设多少钱
  • 西安网站建设陕icpseo推广教程视频
  • 聊城正规网站建设公司电话seo怎么做教程
  • 网站ip地址 a记录电脑培训网
  • 国外文本排版设计网站腾讯企点是干嘛的
  • 北京网站主题制作图片点击就能跳转网站怎么做的
  • 龙采网站建设资源分享平台然后搭建网站
  • 长沙做网站建设价格青海网站制作的公司
  • 罗湖网站建设-信科网络宛城区建网站
  • phpnow 新建网站做网站交易装备可以么
  • 手机建站编写网站策划方案
  • 网站开发的职业目标1g1m wordpress
  • 大型国企网站建设费用广告设计方案
  • 网站的推广等内容h5游戏网站入口
  • 苏州网站建设2万起如何做vip微信电影网站