gpt4 book ai didi

python - types.MethodType 是如何使用的?

转载 作者:太空狗 更新时间:2023-10-29 21:54:11 77 4
gpt4 key购买 nike

types.MethodType 期望什么参数,它返回什么? https://docs.python.org/3.6/library/types.html不多说了:

types.MethodType

The type of methods of user-defined class instances.

例如,来自https://docs.python.org/3.6/howto/descriptor.html

To support method calls, functions include the __get__() method for binding methods during attribute access. This means that all functions are non-data descriptors which return bound or unbound methods depending whether they are invoked from an object or a class. In pure python, it works like this:

class Function(object):
. . .
def __get__(self, obj, objtype=None):
"Simulate func_descr_get() in Objects/funcobject.c"
if obj is None:
return self
return types.MethodType(self, obj)
  • types.MethodType 的第一个参数 self 必须是可调用对象吗?换句话说,Function 类必须是可调用类型,即 Function 必须有方法 __call__

  • 如果 self 是一个可调用对象,它是否至少需要一个参数?

  • types.MethodType(self, obj) 是否意味着将 obj 作为可调用对象 self 的第一个参数,即用 obj 套用 self

  • types.MethodType(self, obj) 如何创建并返回 types.MethodType 的实例?

谢谢。

最佳答案

通常您不需要创建 types.MethodType 的实例你自己。相反,当您访问类实例上的方法时,您会自动获得一个。

例如,如果我们创建一个类,创建它的一个实例,然后访问该实例的一个方法(不调用它),我们将得到一个 types.MethodType 的实例。返回:

import types

class Foo:
def bar(self):
pass

foo = Foo()

method = foo.bar

print(type(method) == types.MethodType) # prints True

您在问题中摘录的代码试图说明这通常是如何发生的。这通常不是您必须自己做的事情,但如果您确实愿意,可以。例如,创建 types.MethodType 的另一个实例相当于method以上,我们可以做:

method_manual = types.MethodType(Foo.bar, foo)

MethodType 的第一个参数是一个可调用对象(通常是一个函数,但也可以是其他对象,例如您正在阅读的示例中的 Function 类的实例)。第二个参数我们将函数绑定(bind)到什么。当您调用方法对象(例如 method() )时,绑定(bind)对象将作为第一个参数传递到函数中。

通常方法绑定(bind)到的对象是一个实例,但也可以是其他对象。例如,classmethod装饰函数将绑定(bind)到调用它的类,而不是实例。这是一个例子(既自动获取绑定(bind)到类的方法,又手动完成):

class Foo2:
@classmethod
def baz(cls):
pass

foo2 = Foo2()

method2 = Foo2.baz
method2_via_an_instance = foo2.baz
method2_manual = types.MethodType(method2.__func__, Foo2)

所有三个 method2 - 前缀变量的工作方式完全相同(当你调用它们时,它们都会调用 baz 并将 Foo2 作为 cls 参数)。这次手动方法唯一不靠谱的地方是很难找到原来的baz。函数而不获取绑定(bind)方法,所以我从其他绑定(bind)方法对象之一中取出它。

最后一点:名字 types.MethodType是用于绑定(bind)方法的内部类型的别名,否则它没有可访问的名称。与许多类不同,repr实例的不是重新创建它的表达式(它类似于 "<bound method Foo.bar of <__main__.Foo object at 0x0000...>>" )。 repr 也不是访问类型的有效名称(repr"method" )。

关于python - types.MethodType 是如何使用的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46525069/

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