元類別一般用於建立類別。在執行類別定義時,解釋器必須要知道這個類別的正確的元類別。解釋器會先尋找類別屬性__metaclass__,如果此屬性存在,就將這個屬性賦值給此類作為它的元類別。如果此屬性沒有定義,它會向上查找父類別中的__metaclass__.如果還沒有發現__metaclass__屬性,解釋器會檢查名字為__metaclass__的全域變數,如果它存在,就使用它作為元類別。否則, 這個類別就是一個傳統類別,並用 types.ClassType 作為此類的元類別。
在執行類別定義的時候,將檢查此類正確的(一般是預設的)元類別,元類別(通常)傳遞三個參數(到建構器): 類別名稱,從基底類別繼承資料的元組,和(類的)屬性字典。
元類別何時被創建?
#!/usr/bin/env python print '1. Metaclass declaration' class Meta(type): def __init__(cls, name, bases, attrd): super(Meta,cls).__init__(name,bases,attrd) print '3. Create class %r' % (name) print '2. Class Foo declaration' class Foo(object): __metaclass__=Meta def __init__(self): print '*. Init class %r' %(self.__class__.__name__) # 何问起 hovertree.com print '4. Class Foo f1 instantiation' f1=Foo() print '5. Class Foo f2 instantiation' f2=Foo() print 'END' 输出
結果:
1. Metaclass declaration
2. Class Foo declaration
3. Create class 'Foo'oo so
5. Class Foo f2 instantiation
*. Init class 'Foo'
END