惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
D
Docker
Microsoft Security Blog
Microsoft Security Blog
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
Y
Y Combinator Blog
Vercel News
Vercel News
F
Fortinet All Blogs
B
Blog
Recent Announcements
Recent Announcements
A
About on SuperTechFans
GbyAI
GbyAI
T
The Blog of Author Tim Ferriss
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
MongoDB | Blog
MongoDB | Blog
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
C
Check Point Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
Visual Studio Blog
月光博客
月光博客

博客园 - AlanPaoPao

23)Visitor 22)Template 21)Strategy 20)State 18)Memento 17)Mediator 16)Iterator 15)Interpreter 14)Command 13)Chain Of Responsibility 12)Proxy 11)Flyweight 10)Facade 09)Decorator 08)Composite 07)Bridge 06)Adapter 05)Prototype 04)Factory Method
19)Observer
AlanPaoPao · 2007-09-21 · via 博客园 - AlanPaoPao

    观察者模式的目的是: 当一个对象的状态发生改变时, 所有依赖于它的对象都得到通知并被自动更新
    实例代码:

interface IInvestor
{
  
void Update(Stock stock);
}

abstract class Stock
{
  
protected string symbol;
  
protected double price;
  
private ArrayList investors = new ArrayList();
  
public Stock(string symbol, double price)
  
{
    
this.symbol = symbol;
    
this.price = price;
  }

  
public void Attach(Investor investor)
  
{
    investors.Add(investor);
  }

  
public void Detach(Investor investor)
  
{
    investors.Remove(investor);
  }

  
public void Notify()
  
{
    
foreach (Investor investor in investors)
    
{
      investor.Update(
this);
    }

    Console.WriteLine(
"");
  }

  
public double Price
  
{
    
get return price; }
    
set
    
{
      price 
= value;
      Notify();
    }

  }

  
public string Symbol
  
{
    
get return symbol; }
    
set { symbol = value; }
  }

}

class IBM : Stock
{
  
public IBM(string symbol, double price)
    : 
base(symbol, price)
  
{
  }

}

class Investor : IInvestor
{
  
private string name;
  
private Stock stock;
  
public Investor(string name)
  
{
    
this.name = name;
  }

  
public void Update(Stock stock)
  
{
    Console.WriteLine(
"Notified {0} of {1}'s " + "change to {2:C}", name, stock.Symbol, stock.Price);
  }

  
public Stock Stock
  
{
    
get return stock; }
    
set { stock = value; }
  }

}

class MainApp
{
  
static void Main()
  
{
    Investor s 
= new Investor("Sorros");
    Investor b 
= new Investor("Berkshire");
    IBM ibm 
= new IBM("IBM"120.00);
    ibm.Attach(s);
    ibm.Attach(b);
    ibm.Price 
= 120.10;
    ibm.Price 
= 121.00;
    ibm.Price 
= 120.50;
    ibm.Price 
= 120.75;
    Console.Read();
  }

}