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

溫馨提示×

溫馨提示×

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

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

設計模式-裝飾模式

發布時間:2020-07-17 12:50:07 來源:網絡 閱讀:332 作者:全嗲吉祥 欄目:編程語言
public class Person
    {
        public Person()
        {
        }
        private string name;
        public Person(string _name)
        {
            this.name = _name;
        }        
        public virtual void show()
        {
            Console.WriteLine(string.Format("{0}開始show",name));
        }
    }
public class Fushi:Person
    {
        protected Person person;

        public void daban(Person _person)
        {
            this.person = _person;
        }
        public override void show()
        {
            if (person != null)
            {
                person.show();
            }
        }
    }
    public class xizhuang : Fushi
    {
        public override void show()
        {
            Console.WriteLine("穿了西裝");
            base.show();
        }
    }
    public class xiku : Fushi
    {
        public override void show()
        {
            Console.WriteLine("穿了西褲");
            base.show();
        }
    }
    public class pixie : Fushi
    {
        public override void show()
        {
            Console.WriteLine("穿了皮鞋");
            base.show();
        }
    }
    public class duanxiu : Fushi
    {
        public override void show()
        {
            Console.WriteLine("穿了短袖");
            base.show();
        }
    }
    public class niuzaiku : Fushi
    {
        public override void show()
        {
            Console.WriteLine("穿了牛仔褲");
            base.show();
        }
    }
    public class fanbuxie : Fushi
    {
        public override void show()
        {
            Console.WriteLine("穿了帆布鞋");
            base.show();
        }
    }
前端
Person p = new Person("張三");
Fushi f1 = new xizhuang();
Fushi f2 = new xiku();
Fushi f3 = new pixie();
f1.daban(p);
f2.daban(f1);
f3.daban(f2);            
f3.show();

設計模式-裝飾模式
總結:裝飾模式是為已有功能動態添加更多功能的一種方式。
錯誤的設計方法是當系統需要新功能時,向類中添加新的代碼。這些新加的代碼通常裝飾了原有類的主要行為,同時增加了類的復雜度;并且違背開閉原則。
裝飾模式把每個需要裝飾的功能單獨放到一個類中,并讓類包裝他需要裝飾的對象。
優點:可以簡化要裝飾的類,把核心職責和裝飾功能分離,去除重復邏輯

向AI問一下細節

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

AI

榕江县| 陵水| 环江| 诸城市| 沙湾县| 临沧市| 黄陵县| 江门市| 林周县| 丹江口市| 璧山县| 闵行区| 嘉善县| 新巴尔虎左旗| 大名县| 哈尔滨市| 内丘县| 九江县| 申扎县| 建德市| 罗平县| 余庆县| 靖江市| 蒙阴县| 灌南县| 宜都市| 五莲县| 南安市| 北安市| 福建省| 呼玛县| 砀山县| 江山市| 西藏| 西平县| 鸡东县| 安多县| 舟山市| 巴中市| 太谷县| 通山县|