首页 > 其他 > 详细

观察者模式

时间:2015-11-30 13:04:48      阅读:264      评论:0      收藏:0      [点我收藏+]
interface ISubject
{
    void registerInterest(IObserver ob);
}
interface IObserver
{
    void Update();
}
public class Subject : ISubject
{
    ArrayList al = new ArrayList();

    public void registerInterest(IObserver ob)
    {
          al.Add(ob);
     }

     void sendNotify()
     {
            foreach(IObserver ob in al)
            {
                  ob.Update();
             }
      }

     void xxxxxxxxxxx()
     {
            sendNotify();
      }
}
public class AObserver
{
    public void Update()
    {

     }
}

public class BObserver
{
    public void Update()
    {

     }
}
public static void Main()
{
       .......

}

 

观察者模式

原文:http://www.cnblogs.com/yasepix/p/5006738.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!