vote up 7 vote down star
2

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?

flag

6 Answers

vote up 11 vote down check

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

link|flag
vote up 8 vote down

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|flag
vote up 3 vote down

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|flag
vote up 2 vote down

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|flag
vote up 1 vote down

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|flag
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
vote up -1 vote down

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|flag

Your Answer

Get an OpenID
or

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