Python-19-元类

2019-07-24 09:26:09来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

一、定义

元类就是类的类

type是python的一个内建元类

类的两种定义方式

# 定义类的两种方式
class Foo(object):
    def __init__(self, name, age):
        self.name = name
        self.age = age

print(Foo)  # <class '__main__.Foo'>


def __init__(self, name, age):
    self.name = name
    self.age = age
def test():
    print('====')

FFo = type('Foo', (object,), {'x': 1, '__init__': __init__, 'test': test})
print(FFo)  # <class '__main__.Foo'>
f1 = FFo('alex', 18)
print(f1.__dict__)  # {'name': 'alex', 'age': 18}

二、自定义元类

如果一个类没有声明自己的元类,默认他的元类是type,除了使用元类type,用户也可以自定义元类

class MyType(type):
    def __init__(self, a, b, c):
        print('元类的构造函数开始运行')

    def __call__(self, *args, **kwargs):
        obj = object.__new__(self)
        self.__init__(obj, *args, **kwargs)
        return obj


class Foo(metaclass=MyType):  # Foo = MyType(Foo, 'Foo', (), {})
    def __init__(self, name):
        self.name = name


f1 = Foo('alex')

 


原文链接:https://www.cnblogs.com/lsf123456/p/11206737.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:1.日期时间字符串转时间戳

下一篇:2.时间戳转换时间字符串函数