vote up 1 vote down star
2

The decorator design pattern is a very good solution for extending a class functionality. For instance if I want pre and post processing methods on an existing class method I can create a decorator and override the existing method in the base class and call my pre and post processing methods respectively.

My question here is, the requirement stated above will seldom arise during application design. I cannot mark all the methods I create as virtual so that they can be overridden by a decorator. Hence, I will have to resort to method hiding.

Is there a better way of designing my classes so that in situations where I want to override any methods it can be done in the best possible manner.

flag

61% accept rate

2 Answers

vote up 1 vote down

have you thought about using aspects(AOP) ? -Added after you wrote the comment: You could take a look at the log4postsharp project and see how they are using attributes on the method. Log4PostSharp

If you compile and and open the dll using f.ex Reflector you will see that the pre- and post-actions are added runtime.

-such behavior can also be added using xml-configs

link|flag
1  
Can you provide me an example to do the above using AOP concepts. – Hemanshu Bhojak Mar 24 at 5:23
i added more info in the answer above.. – ThorHalvor Mar 26 at 14:02
vote up 0 vote down

Usually when I decorate a class I do it via composition, not inheritance. That way you don't need to override anything.

link|flag
You still need to extract an interface definition which your decorator class (as well as the decorated class) may implement, otherwise this won't generally work. – Konrad Rudolph Mar 26 at 14:26
Of course. I habitually hide concrete classes behind role-based interfaces. – Jim Arnold Mar 27 at 10:21

Your Answer

Get an OpenID
or

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