python type metaclass

Posted Howhy Blogs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python type metaclass相关的知识,希望对你有一定的参考价值。

obj=Foo()##Foo类是MyType类的对象 所以先执行MyType的init  Foo()加括号执行MyType的call

foo=type(\'Foo\',(object,),{\'say\':lambda a:123}) ##所有类都是type类的对象
print(foo().say())

以上是关于python type metaclass的主要内容,如果未能解决你的问题,请参考以下文章

python中的type

python 中的type

python之type

python中print type是啥意思

Python3---常见函数---type()

Python基础 type元类