Does Python have extension methods like C#? Is it possible to call a method like:
MyRandomMethod()
on existing types like int?
myInt.MyRandomMethod()
|
2
|
Does Python have extension methods like C#? Is it possible to call a method like:
on existing types like
|
|||
|
|
|
not sure if that what you're asking but you can extend existing types and then call whatever you like on the new thing:
hope that clarifies your question |
||||||||||
|
|
|
You can add whatever methods you like on class objects defined in Python code (AKA monkey patching):
This does not work on builtin types, because their So no, there is no "real" extension method mechanism in Python. |
||
|
|
|
|
Another option is to override the meta-class. This allows you to, among other things, specify functions that should exist in all classes. This article starts to discuss it: http://www.onlamp.com/pub/a/python/2003/04/17/metaclasses.html |
||||||
|
|
|
I've had great luck with the method described here: http://mail.python.org/pipermail/python-dev/2008-January/076194.html I have no idea if it works on builtins though. |
||
|