栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

在带有装饰器的__init__之后注入函数调用

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

在带有装饰器的__init__之后注入函数调用

根据本文和答案,另一种实现方法是通过自定义元类。这将按以下方式工作(在python 2.7中进行了测试):

# define a new metaclass which overrides the "__call__" functionclass NewInitCaller(type):    def __call__(cls, *args, **kwargs):        """Called when you call MyNewClass() """        obj = type.__call__(cls, *args, **kwargs)        obj.new_init()        return obj# then create a new class with the __metaclass__ set as our custom metaclassclass MyNewClass(object):    __metaclass__ = NewInitCaller    def __init__(self):        print "Init class"    def new_init(self):        print "New init!!"# when you create an instancea = MyNewClass()>>> Init class>>> New init!!

基本思想是:

  1. 当您调用

    MyNewClass()
    它搜索元类时,会发现您已定义
    NewInitCaller

  2. 元类

    __call__
    函数被调用。

  3. 此函数

    MyNewClass
    使用创建实例
    type

  4. 该实例将自己运行

    __init__
    (打印“ Init类”)。

  5. 然后,元类将调用

    new_init
    实例的函数。



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/660737.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号