gpt4 book ai didi

python - 为什么这是错误的? `SomeClass.method is SomeClass.method`

转载 作者:行者123 更新时间:2023-11-28 20:33:54 25 4
gpt4 key购买 nike

以这段代码为例:

class SomeClass():
def a_method(self):
pass

print(SomeClass.a_method is SomeClass.a_method) # Example 1: False
print(SomeClass.a_method == SomeClass.a_method) # Example 2: True
print(SomeClass().a_method is SomeClass().a_method) # Example 3: False
print(SomeClass().a_method == SomeClass().a_method) # Example 4: False
  • 示例 1:我猜他们是同一个对象。每次引用方法时,Python 是否都会复制该方法?
  • 示例 2:预期。
  • 示例 3:符合预期,因为它们是不同的对象。
  • 示例 4:为什么此输出与示例 2 不匹配?

最佳答案

示例 1:

Someclass.a_method 是一个未绑定(bind)方法。如今,这些甚至在 Python 中都不存在,因此请将其视为无用的历史课。

Does Python make a copy of the method each time it is referenced?

是的,或多或少。这是通过 descriptor protocol 完成的.

>>> SomeClass.a_method  # unbound method via attribute access
<unbound method SomeClass.a_method>
>>> SomeClass.__dict__['a_method'] # just stored as a function in the class dict
<function __main__.a_method>
>>> SomeClass.__dict__['a_method'].__get__(None, SomeClass)
<unbound method SomeClass.a_method>

最后一行显示了描述符为类的属性访问而调用的“绑定(bind)”操作,但是是手动写出来的。在纯 Python 中,它是这样的

class Function(object):
def __get__(self, obj, objtype=None):
"Simulate func_descr_get() in Objects/funcobject.c"
return types.MethodType(self, obj, objtype):

您还可以通过这种方式创建绑定(bind)方法:

>>> some_instance = SomeClass()
>>> SomeClass.__dict__['a_method'].__get__(some_instance, SomeClass)
<bound method SomeClass.a_method of <__main__.SomeClass instance at 0xcafef00d>>

例子2:

方法比较是通过方法的 __func____self__ 属性完成的。在这种情况下,它们是相同的:__func__ 是您可以从类 dict 中挖掘出的相同的普通旧函数,而 __self__None。因此,尽管这些方法是不同的对象,但它们比较起来是相等的。

示例 3:

正确。它们是不同的对象,因此并不相同。

例子4:

如前所述,比较是使用 __func____self__ 属性。结果与示例 2 不匹配,因为在这种情况下,__self__ 属性引用不同的实例。那些不同的实例比较不相等,因为 SomeClass 实例按身份进行比较,因此这些方法也不相等。

关于当前 Python 版本的最后说明

除了示例 1 之外,上面提到的所有内容也适用于该语言的当前版本。在 Python 中,不再有未绑定(bind)方法这样的东西,对象模型中这种不必要的复杂化已被移除。

>>> SomeClass.a_method
<function __main__.SomeClass.a_method(self)>
>>> SomeClass.a_method is SomeClass.__dict__['a_method']
True

Python 2 中的“未绑定(bind)方法”现在只是一个普通的旧函数,通过属性访问检索的实例与类字典中的对象相同。在 Python 2 -> Python 3 升级中,示例 1 结果从 False 更改为 True

关于python - 为什么这是错误的? `SomeClass.method is SomeClass.method`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49765019/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com