91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

西乌珠穆沁旗| 新田县| 丽水市| 山阴县| 防城港市| 同心县| 灌云县| 乌鲁木齐市| 浙江省| 大关县| 清流县| 凉山| 上栗县| 克拉玛依市| 兴安县| 五大连池市| 南郑县| 灵丘县| 武鸣县| 南溪县| 彰化市| 托克逊县| 丘北县| 万源市| 德昌县| 连南| 定西市| 尖扎县| 彝良县| 峨眉山市| 新泰市| 常州市| 英吉沙县| 丽江市| 嘉荫县| 石家庄市| 朔州市| 两当县| 九江县| 高雄市| 扎赉特旗|