Python metaclasses - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T13:20:43Zhttp://stackoverflow.com/feeds/question/618960http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/618960/python-metaclasses2Python metaclassesinterstar2009-03-06T14:06:27Z2009-05-27T06:40:19Z
<p>I've been hacking classes in python like this :</p>
<pre><code>def hack(f,aClass) :
class MyClass(aClass) :
def f(self) :
f()
return MyClass
A = hack(afunc,A)
</code></pre>
<p>Which looks pretty clean to me. It takes a class A, creates a new class derived from it, that has an extra method, calling f, and then reassigns the new clas to A.</p>
<p>How does this differ from metaclass hacking in Python. What are the advantages of using <strong>metaclass</strong> over this?</p>
http://stackoverflow.com/questions/618960/python-metaclasses/618974#6189740Answer by rjh for Python metaclassesrjh2009-03-06T14:09:58Z2009-03-06T14:09:58Z<p>With a metaclass system you can grab classes and add/remove methods from them dynamically. Your method creates an effectively anonymous subclass every time you add a method, which will result in very slow method dispatch due to the size of your inheritance chain. Additionally there is no way to remove a method.</p>
http://stackoverflow.com/questions/618960/python-metaclasses/619025#6190253Answer by Jarret Hardie for Python metaclassesJarret Hardie2009-03-06T14:27:36Z2009-03-06T14:27:36Z<p>The definition of a class in python is an instance of type (or an instance of a subclass of type). In other words, the class definition itself is an object. With metaclasses, you have the ability to control the type instance that becomes the class definition.</p>
<p>When a metaclass is invoked, you have the ability to completely re-write the class definition. You have access to all the proposed attributes of the class, its ancestors, etc. More than just injecting a method or removing a method, you can radically alter the inheritance tree, the type, and pretty much any other aspect. You can also chain metaclasses together for a very dynamic and totally convoluted experience.</p>
<p>I suppose the real benefit, though is that the class's type remains the class's type. In your example, typing:</p>
<pre><code>a_inst = A()
type(a_inst)
</code></pre>
<p>will show that it is an instance of <code>MyClass</code>. Yes, <code>isinstance(a_inst, aClass)</code> would return <code>True</code>, but you've introduced a subclass, rather than a dynamically re-defined class. The distinction there is probably the key.</p>
<p>As rjh points out, the anonymous inner class also has performance and extensibility implications. A metaclass is processed only once, and the moment that the class is defined, and never again. Users of your API can also extend your metaclass because it is not enclosed within a function, so you gain a certain degree of extensibility.</p>
<p>This slightly old article actually has a good explanation that compares exactly the "function decoration" approach you used in the example with metaclasses, and shows the history of the Python metaclass evolution in that context: <a href="http://www.ibm.com/developerworks/linux/library/l-pymeta.html" rel="nofollow">http://www.ibm.com/developerworks/linux/library/l-pymeta.html</a></p>
http://stackoverflow.com/questions/618960/python-metaclasses/815963#8159630Answer by David Alan for Python metaclassesDavid Alan2009-05-03T00:09:30Z2009-05-03T00:09:30Z<p>A metaclass is the class of a class. IMO, the bloke here covered it quite serviceably, including some use-cases:</p>
<p><a href="http://stackoverflow.com/questions/395982/metaclass-new-cls-and-super-can-someone-explain-the-mechanism-exactly/396109#396109">http://stackoverflow.com/questions/395982/metaclass-new-cls-and-super-can-someone-explain-the-mechanism-exactly/396109#396109</a></p>
http://stackoverflow.com/questions/618960/python-metaclasses/914283#9142830Answer by Antti Rasinen for Python metaclassesAntti Rasinen2009-05-27T06:40:19Z2009-05-27T06:40:19Z<p>You can use the <code>type</code> callable as well.</p>
<pre><code>def hack(f, aClass):
newfunc = lambda self: f()
return type('MyClass', (aClass,), {'f': newfunc})
</code></pre>
<p>I find using <code>type</code> the easiest way to get into the metaclass world.</p>