中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java設計模式學習之裝飾模式

發布時間:2020-09-17 16:45:51 來源:腳本之家 閱讀:138 作者:南國木棉 欄目:編程語言

裝飾模式:動態的給一個對象添加一些額外的職責,就增加功能來說,裝飾模式比生成子類更加靈活。

優點:裝飾類和被裝飾類可以獨立發展,不會相互耦合,裝飾模式是繼承的一個替代模式,裝飾模式可以動態擴展一個實現類的功能。

缺點:多層裝飾比較復雜。

實例:給一個人配置穿衣

1:代碼結構圖

java設計模式學習之裝飾模式

2:創建一個person類(  ConcreteComponent)

package DecoratorModel;

/**
 * 2017-10-9 10:39:09
 * 裝飾器設計模式
 * Person 類 ConcreteComponent
 * @author 我不是張英俊
 *
 */
public class Person {

  public Person(){}
  
  private String name;
  public Person(String name){
    this.name=name;
  }
  
  public void Show(){
    System.out.println("裝扮的"+name);
  }
}

3:服飾類

package DecoratorModel;

/**
 *服飾類(Decorator)
 * @author 我不是張英俊
 *
 */
public class Finery extends Person{

  protected Person component;
  //打扮
  public void Decorate(Person component){
    this.component=component;
  }
  
  public void Show(){
    if(component!=null){
      component.Show();
    }
  }
}

4:具體服飾類

public class Tshirts extends Finery {
  public void Show(){
    System.out.println("大T恤");
    super.Show();
    }
}

public class BigTrouser extends Finery {
  public void Show(){
    System.out.println("垮褲");
    super.Show();
  }
}

public class Sneakers extends Finery {
  public void Show(){
    System.out.println("破球鞋");
    super.Show();
    }
}

public class Suit extends Finery {
  public void Show(){
    System.out.println("西裝");
    super.Show();
  }
}

public class Tie extends Finery {
  public void Show(){
    System.out.println("領帶");
    super.Show();
  }
}

public class LeatherShoes extends Finery {
  public void Show(){
    System.out.println("皮鞋");
    super.Show();
  }
}

5:測試類

public class test {

  public static void main(String[] args) {
    Person xc=new Person("旺財");    
    Sneakers pqx=new Sneakers();
    BigTrouser kk=new BigTrouser();
    Tshirts dtx=new Tshirts();
    pqx.Decorate(xc);
    kk.Decorate(pqx);
    dtx.Decorate(kk);
    dtx.Show();
  }

}

6:控制臺

大T恤
垮褲
破球鞋
裝扮的旺財

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

花莲县| 武汉市| 宁国市| 阳春市| 九龙城区| 东丰县| 苏尼特右旗| 鹤峰县| 黄冈市| 嘉善县| 尚义县| 广宁县| 洞头县| 称多县| 胶南市| 承德县| 云安县| 唐山市| 义马市| 紫云| 马鞍山市| 平凉市| 天津市| 南城县| 昂仁县| 东明县| 谷城县| 深圳市| 通海县| 申扎县| 马公市| 刚察县| 仁寿县| 大邑县| 县级市| 察哈| 临高县| 蓝山县| 西平县| 南和县| 蓝田县|