class方法上的functools.partial

class方法上的functools.partial,第1张

class方法上的functools.partial

您正在 函数 上创建局部 函数
,而不是方法上。

functools.partial()
对象不是描述符,它们本身不会添加
self
参数,也不能自己充当方法。您 只能
包装绑定的方法或函数,它们对于未绑定的方法根本不起作用。这是记录:

partial
对象就像
function
对象一样,它们是可调用的,弱引用的,并且可以具有属性。有一些重要的区别。例如,
__name__
__doc__
属性不会自动创建。同样,
partial
在类中定义的对象的行为类似于静态方法,并且在实例属性查找期间不会转换为绑定方法。

使用

property
s代替;这些 描述符:

class RGB(object):    def __init__(self, red, blue, green):        super(RGB, self).__init__()        self._red = red        self._blue = blue        self._green = green    def _color(self, type):        return getattr(self, type)    @property    def red(self): return self._color('_red')    @property    def blue(self): return self._color('_blue')    @property    def green(self): return self._color('_green')

从Python
3.4开始,您可以在此处使用新

functools.partialmethod()
对象。绑定到实例时,它将做正确的事情:

class RGB(object):    def __init__(self, red, blue, green):        super(RGB, self).__init__()        self._red = red        self._blue = blue        self._green = green    def _color(self, type):        return getattr(self, type)    red = functools.partialmethod(_color, type='_red')    blue = functools.partialmethod(_color, type='_blue')    green = functools.partialmethod(_color, type='_green')

但是这些

property
对象必须被调用,而对象可以用作简单属性。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5645263.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存