After reading the Head First Design Patterns book and using a number of other design patterns, I'm trying to understand the Observer pattern. Isn't this already implemented using Events in the .NET Framework?

link|improve this question

feedback

6 Answers

up vote 13 down vote accepted

Yes, it is. The observer pattern is also called the publish/subscribe pattern, which is exactly what events allow you to do.

link|improve this answer
for a slightly different answer to this question, see stackoverflow.com/questions/1023329/… – kmote Feb 14 at 14:25
feedback

I would say yes, it was Anders Heljsberg's intent to make the observer pattern a first-class language feature with events in C#, based on his experience with Delphi. Anders makes this and other design intentions clear in an excellent interview on Software Engineering Radio.

link|improve this answer
feedback

That's right, events are an implementation of the observer pattern. I have read discussions , though, of people who still write their own, to give them either more flexibility, or maybe just to avoid the event-raising syntax.

link|improve this answer
feedback

Yes, it's identical.

A note: if you really want to understand events, I recommend learning the observer pattern and implementing it yourself a for a while. Once you fully understand it, stop doing it yourself and use the professional and well-documented implementation unless you have a real need to do otherwise.

link|improve this answer
feedback

Yes, but programming the observer pattern explicitly and thus not using delegates and events can result in easier debugging of your code.

Consider the difference:

public void NotifyObservers()
{
    foreach(Product product in ProductList)
    {
        if (product is IProductObserver)
        {
               product.Update(this)
        }
    }
}

Here it is very clear what products in the list get notified of a change. While debugging you can inspect the ProductList...

With using delegates and events it can be more cumbersome to find out how many "delegates" were actually "subscribed" to handle the event.

link|improve this answer
I don't like the idea of encouraging developers to reimplement instead of reuse. – Jay Bazuzi Sep 24 '08 at 5:44
Can you elaborate on that? I mean, In both cases developers have to implement the pattern. I have put this as an explicit example basicly because I am agreeing with Dinah that if you really want to understand the observer pattern it is best to first build it yourself and go to events afterwards. – Hace Sep 25 '08 at 19:56
feedback

Most modern languages have native support for some of the design patterns. It has been argued that languages are better the more patterns they support natively without the need to implement them explicitly, and that Lisp is excellent in this regard. Jeff had something to say about that, too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.