码迷,mamicode.com
首页 > 其他好文 > 详细

责任链模式

时间:2014-09-03 11:13:16      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:io   ar   cti   sp   on   c   new   app   text   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    public class Context
    {
        public Context(int day)
        {
            Day = day;
        }

        public int Day { get; set; }
    }

    public abstract class Handle
    {
        public abstract void Pass(Context context);
    }

    public class A : Handle
    {
        public override void Pass(Context context)
        {
           
        }
    }

    public class B : Handle
    {
        public override void Pass(Context context)
        {

        }
    }

    public class C : Handle
    {
        public override void Pass(Context context)
        {

        }
    }

    class Program
    {
        static void Main(string[] args)
        {
            Handle obj1 = new A();
            Handle obj2 = new B();
            Handle obj3 = new C();

            obj1.Pass(new Context(1));
            obj2.Pass(new Context(2));
            obj3.Pass(new Context(3));
        }
    }
}

责任链模式

标签:io   ar   cti   sp   on   c   new   app   text   

原文地址:http://www.cnblogs.com/liushangkui/p/3953066.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!