当前位置: 首页 > 图灵资讯 > 行业资讯> Python元类的使用

Python元类的使用

来源:图灵python
时间: 2024-08-21 22:23:28

1、说明

元类是类,是类模板。元类的例子是类,就像类的例子是对象一样。

元类的作用是用来创造类。元类解决了代码冗余问题,因为元类将在子类中继承。

2、实例

>>>a=10;b=12.12;c="hello";d=[1,2,3,"rr"];e={"aa":1,"bb":"cc"}
>>>type(a);type(b);type(c);type(d);type(e)
<class'int'>#a=10;a也是对象,即10是对象,它是int类型的对象
<class'float'>#float也是一个类别,请注意,python的写作方法是小写,有的是大写
<class'str'>
<class'list'>
<class'dict'>


classPerson(object):
print("不调用类,也会执行我")
def__init__(self,name):
self.name=name
defp(self):
print("thisisamethond")

print(Person)
tom=Person("tom")
print("tom实例的类型为:%s"%type(tom))#实例tom是Person类的对象。
print("Peron类型:%s"%type(Person))#结果表明,我们创建的类属于type类,也就是说,Person是type的对象
print("type的类型是:%s"%type(type))#type是type自己的对象
'''
不调用类,也会执行我
<class'__main__.Person'>
tom实例类型如下:<class'__main__.Person'>
Peron类型:<class'type'>
type的类型如下:<class'type'>
'''

以上是Python元的使用,希望对大家有所帮助。更多Python学习推荐:python教学

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。