Hi! Is there a way in Python to override a class method at instance level? For example:
class Dog:
def bark(self):
print "WOOF"
boby = Dog()
boby.bark() # WOOF
# METHOD OVERRIDE
boby.bark() # WoOoOoF!!
Thanks
|
1
|
Hi! Is there a way in Python to override a class method at instance level? For example:
Thanks
|
||
|
|
|
|
Please do not do this as shown. You code becomes unreadable when you monkeypatch an instance to be different from the class. You cannot debug monkeypatched code. When you find a bug in Please do this instead.
|
||
|
|
|
|
Though I liked the inheritance idea from S. Lott and agree with the 'type(a)' thing, but since functions too have accessible attributes, I think the it can be managed this way:
and the output is :
|
||
|
|
|
Since functions are first class objects in Python you can pass them while initializing your class object or override it anytime for a given class instance:
and the results are
|
||
|
|
|
|
You can use the |
||
|
|
|
Yes, it's possible:
|
||
|
|