b. 如果没有,依次在父类、模块中寻找是否有这个属性,如果有就用其中 __metaclass__ 创建;
c. 如果上面的过程都没有找到,那么就用内置的 type 来创建这个类对象。
这里的 __metaclass__ 中就是用来可以创建一个类的代码,或者其他使用到 type 以及子类化 type 的代码。
实际实现中,我们可以通过继承 type 来实现一个元类,在类定义时通过指定 metaclass 来使用定义的元类。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 定义元类classMyMeta(type):def__new__(cls,name,bases,dct):print(f"Creating class {name} with bases {bases} and attributes {dct}")returnsuper(MyMeta,cls).__new__(cls,name,bases,dct)# 指定 metaclass 使用元类classMyClass(metaclass=MyMeta):def__init__(self,x):self.x=x# 创建一个 MyClass 实例obj=MyClass(10)## Creating class MyClass with bases () and attributes {'__module__': '__main__', '__qualname__': 'MyClass', '__init__': <function MyClass.__init__ at 0x10386c9d0>}