How do you decide between using decorators and inheritance when both are possible?
E.g., this problem has two solutions.
I'm particularly interested in Python.
|
How do you decide between using decorators and inheritance when both are possible? E.g., this problem has two solutions. I'm particularly interested in Python. |
||||
| show 1 more comment |
|
Decorators...:
e.g.
Is equivalent to:
Multiple inheritance...:
To sum up, I would use decorators for mixin-like behavior if they didn't return proxy objects. Some examples would include any decorator which returns the original function, slightly modified (or after registering it somewhere or adding it to some collection). Things you will often find decorators for (like memoization) are also good candidates, but should be used in moderation if they return proxy objects; the order they are applied matter. And too many decorators on top of one another is using them in a way they aren't intended to be used. I would consider using inheritance if it was a "classic inheritance problem", or if all I needed for the mixin behavior were methods. A classic inheritance problem is one where you can use the child wherever you could use the parent. In general, I try to write code where it is not necessary to enhance arbitrary things. |
|||||||||||||
|
|
The problem you reference is not deciding between decorators and classes. It is using decorators, but you have the option of using either:
A decorator is just a fancy name for the "wrapper" pattern, i.e. replacing something with something else. The implementation is up to you (class or function). When deciding between them, it's completely a matter of personal preference. You can do everything you can do in one with the other.
(Why is it a good idea? There may be assumptions that a decorated function is still a function, and a decorated class is still a class.) Even better in both cases would be to use a decorator which just returns the original, modified somehow. edit: After better understanding your question, I have posted another solution at Python functools.wraps equivalent for classes |
||||
|
|
|
If both are equivalent, I would prefer decorators, since you can use the same decorator for many classes, while inheriting apply to only one specific class. |
|||||||
|
__doc__are transferred. The only difference between the two is that his replaces thememoize(...)decorator with a class, while mine replaces it with a function. Not much difference. – ninjagecko Jun 20 '11 at 4:17