用type方法创建类

Posted Python从入门到放弃第一集

tags:

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

def __init__(self,name,age):
self.name=name
self.age=age

def hello(self):
print (‘%s is saying hello...‘ %self.name)

Foo=type(‘Foo‘,(object,),{‘hello‘:hello,‘__init__‘:__init__})

f=Foo(‘zhang‘,22)
print (f.name)
print (f.age)
f.hello()

以上是关于用type方法创建类的主要内容,如果未能解决你的问题,请参考以下文章

metaclass

整理类的调用方式和构造方法

python中的元类作用?

Flask源码流程剖析

反射-优化及程序集等(用委托的方式调用需要反射调用的方法(或者属性字段),而不去使用Invoke方法)

写给小白的Python之019:面向对象-类方法静态方法