真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

C#裝飾器模式怎么實(shí)現(xiàn)

這篇文章主要介紹了C#裝飾器模式怎么實(shí)現(xiàn)的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇C#裝飾器模式怎么實(shí)現(xiàn)文章都會(huì)有所收獲,下面我們一起來(lái)看看吧。

專業(yè)成都網(wǎng)站建設(shè)公司,做排名好的好網(wǎng)站,排在同行前面,為您帶來(lái)客戶和效益!創(chuàng)新互聯(lián)建站為您提供成都網(wǎng)站建設(shè),五站合一網(wǎng)站設(shè)計(jì)制作,服務(wù)好的網(wǎng)站設(shè)計(jì)公司,網(wǎng)站制作、做網(wǎng)站負(fù)責(zé)任的成都網(wǎng)站制作公司!

首先肯定是抽象基類。

    public abstract class OurStrategy
    {
        public abstract void Play(string msg);
    }

通常,在上半場(chǎng),我們一般都使用防守陣型。

    public class OurDefaultStategy : OurStrategy
    {
        public override void Play(string msg)
        {
            Console.WriteLine("上半場(chǎng)4-1-2-1防守陣型");
        }
    }

下半場(chǎng),會(huì)根據(jù)上半場(chǎng)的態(tài)勢(shì)而調(diào)整陣型。也就是需要實(shí)現(xiàn)OurStrategy這個(gè)抽象類。不過(guò),先不急,我們還得先抽象出一個(gè)實(shí)現(xiàn)OurStrategy這個(gè)抽象類、充當(dāng)裝飾器的一個(gè)抽象類。

    public abstract class OurDecorator : OurStrategy
    {
        private OurStrategy _ourStrategy;
        public OurDecorator(OurStrategy ourStrategy)
        {
            this._ourStrategy = ourStrategy;
        }
        public override void Play(string msg)
        {
            if (_ourStrategy != null)
            {
                _ourStrategy.Play(msg);
            }
        }
    }

以上,這個(gè)充當(dāng)裝飾器的抽象類,接收某個(gè)實(shí)現(xiàn)OurStrategy抽象基類的子類實(shí)例,并執(zhí)行OurStrategy抽象基類的方法Play。

接下來(lái),實(shí)現(xiàn)OurDecorator這個(gè)充當(dāng)裝飾器的類。

    public class AttackStategy : OurDecorator
    {
        public AttackStategy(OurStrategy ourStrategy) : base(ourStrategy)
        {
            
        }
        public override void Play(string msg)
        {
            base.Play(msg);
            Console.WriteLine("下半場(chǎng)3-1-3-1進(jìn)攻陣型");
        }
    }

以上,當(dāng)然還可以寫出很多OurDecorator的派生類。

客戶端這樣調(diào)用:

    class Program
    {
        static void Main(string[] args)
        {
            OurDecorator ourDecorator = new AttackStategy(new OurDefaultStategy());
            ourDecorator.Play("haha");
            Console.ReadKey();
        }
    }

C#裝飾器模式怎么實(shí)現(xiàn)

以上,

通過(guò)new AttackStategy(new OurDefaultStategy())把new OurDefaultStategy()實(shí)例賦值給類充當(dāng)裝飾墻的抽象基類OurDecorator的_ourStrategy字段。

當(dāng)執(zhí)行ourDecorator.Play("haha")方法,首先來(lái)到AttackStategy的Play方法,執(zhí)行base.Play(msg),這里的base就是AttackStategy的抽象父類OurDecorator,再執(zhí)行OurDecorator的Play方法,由于已經(jīng)給OurDecorator的_ourStrategy字段賦值,_ourStrategy字段存儲(chǔ)的是OurDefaultStategy實(shí)例,所以,base.Play(msg)最終執(zhí)行的是OurDefaultStategy的Play方法,即把"上半場(chǎng)4-1-2-1防守陣型"顯示出來(lái)。

最后執(zhí)行AttackStategy的Play方法中的Console.WriteLine("下半場(chǎng)3-1-3-1進(jìn)攻陣型")部分,把"下半場(chǎng)3-1-3-1進(jìn)攻陣型"顯示出來(lái)。

關(guān)于“C#裝飾器模式怎么實(shí)現(xiàn)”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“C#裝飾器模式怎么實(shí)現(xiàn)”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


網(wǎng)頁(yè)標(biāo)題:C#裝飾器模式怎么實(shí)現(xiàn)
本文地址:http://weahome.cn/article/poseci.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部