教程集 www.jiaochengji.com
教程集 >  Python编程  >  Python入门  >  正文 Python中的元类是什么?如何快速掌握?

Python中的元类是什么?如何快速掌握?

发布时间:2021-01-19   编辑:jiaochengji.com
教程集为您提供Python中的元类是什么?如何快速掌握?等资源,欢迎您收藏本站,我们将为您提供最新的Python中的元类是什么?如何快速掌握?资源

作为一个的程序单元,学习编程的人应该都需要掌握。今天小编为大家带来元类的讲解。


Python2创建类的时候,可以添加一个__metaclass__属性:

class Foo(object):
   __metaclass__ = something...
   [...]


如果你这样做,Python会使用元类来创建Foo这个类。Python会在类定义中寻找__metaclass__。如果找到它,Python会用它来创建对象类Foo。如果没有找到它,Python将使用type来创建这个类。

在Python3中语法改变了一下:


class Simple1(object, metaclass=something...):
   [...]


本质上是一样的。拿一个元类例子分享一下:


class HelloMeta(type):
   def __new__(cls, name, bases, attrs):
       def __init__(cls, func):
           cls.func = func
       def hello(cls):
           print 'hello world'
       t = type.__new__(cls, name, bases, attrs)
       t.__init__ = __init__
       t.hello = hello
       return t
       class New_Hello(object):
   __metaclass__ = HelloMeta


New_Hello初始化需要添加一个参数,并包含一个叫做hello的方法:


In : h = New_Hello(lambda x: x)
In : h.func(10), h.hello()
hello world
Out: (10, None)


PS: 这个例子只能运行于Python2。


以上就是Python中元类的详解。更多Python学习推荐:JQ教程网Python大全

您可能感兴趣的文章:
最全面的12种Python学习方式
Python中的元类是什么?如何快速掌握?
学习Python却没看过这几本书,你就OUT了
给初学者一些学习Python的建议
python全栈工程师需要学什么
Python到底都能干什么
如何快速掌握使用Python函数嵌套?
python和c语言的区别是什么
python怎么做大数据分析
零基础学python需要多久

[关闭]
~ ~