为了账号安全,请及时绑定邮箱和手机立即绑定

今天俺要说一说装饰着模式(Decorator)

标签:
设计

前言:装饰者模式,又叫做装饰器模式.顾名思义,就是给对象包裹一层,包装。让它变成你喜欢的对象。这种模式在我们开发中经常会用到,它是一种处理问题的技巧,即不让程序死板,也可以扩展程序。

(一)何时能用到它》》》

  1.需要给类一个扩展,或者给类附加一个职责。

  2.动态的给类添加一个功能,这些功能可以动态得撤销。

  3.当不能采用子类进行扩展的时候。

这一文中,我们以主要的3来举例说明的。

(二)装饰器的结构图》》》

https://img1.sycdn.imooc.com//5b8bbbd300018c2606030265.jpg

 

IAction:装饰器标准接口,装有装饰器都要实现它。

DelegateAction:装饰类,用来实现IAction插口的功能,并对外部提供另一种表现形式。

StandardAction:标准实现类,用来实现IAction插口的功能,对其展示也是以IAction接口为准的

Implement:对外公开的调用类,它向外部公开两种接口方法,一是IAction接口标准,一是Action<int> 委托标准。

装饰器的C#实现

 IAction.cs

 

#region 装饰着模式    public interface IAction
    {        void Pring(int a);
    }    #endregion

 

DelegateAction.cs

复制代码

public class DelegateAction:IAction
    {
        Action<int> _action;        public void Pring(int a)
        {
            _action(a);
        }        public DelegateAction(Action<int> action)
        {
            _action = action;
        }
    }

复制代码

Implement.cs

复制代码

 public class Implement
    {        public void Run(IAction action)
        {
            action.Pring(10);
        }        public void Run(Action<int> action)
        {            new DelegateAction(action).Pring(10);
        }
    }

复制代码

standarAction.cs

复制代码

public class standarAction : IAction
    {        public void Pring(int a)
        {
            Console.Write("标准实现装饰器"+a);
        }
    }

复制代码

调用:

 static void Main(string[] args)
        {
            Implement implement = new Implement();
            implement.Run((a) => Console.Write(a));
            implement.Run(new standarAction());
        }

 可见扩展方法能使得装饰行为变得非常简洁,看起来就像是这个对象本身就有新方法似的。还避免了程序出现多种装饰对象,简化程序。

原文出处:https://www.cnblogs.com/ZaraNet/p/9573885.html

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消