9

在 python 中,可以使用 '.' 为了访问对象的字典项。例如:

class test( object ) :
  def __init__( self ) :
    self.b = 1
  def foo( self ) :
    pass
obj = test()
a = obj.foo

从上面的例子中,有一个'a'对象,是否有可能从中获得对'obj'的引用,它是分配给'foo'方法的父命名空间?比如把obj.b改成2?

4

3 回答 3

17

在绑定方法上,您可以使用三个特殊的只读参数:

  • im_func返回(未绑定的)函数对象
  • im_self返回函数绑定到的对象(类实例)
  • im_class返回 im_self 的

周围测试:

class Test(object):
    def foo(self):
        pass

instance = Test()
instance.foo          # <bound method Test.foo of <__main__.Test object at 0x1>>
instance.foo.im_func  # <function foo at 0x2>
instance.foo.im_self  # <__main__.Test object at 0x1>
instance.foo.im_class # <__main__.Test class at 0x3>

# A few remarks
instance.foo.im_self.__class__ == instance.foo.im_class # True
instance.foo.__name__ == instance.foo.im_func.__name__  # True
instance.foo.__doc__ == instance.foo.im_func.__doc__    # True

# Now, note this:
Test.foo.im_func != Test.foo # unbound method vs function
Test.foo.im_self is None

# Let's play with classmethods
class Extend(Test):
    @classmethod
    def bar(cls): 
        pass

extended = Extend()

# Be careful! Because it's a class method, the class is returned, not the instance
extended.bar.im_self # <__main__.Extend class at ...>

这里有一件有趣的事情需要注意,它会提示您如何调用方法:

class Hint(object):
    def foo(self, *args, **kwargs):
        pass

    @classmethod
    def bar(cls, *args, **kwargs):
        pass

instance = Hint()

# this will work with both class methods and instance methods:
for name in ['foo', 'bar']:
    method = instance.__getattribute__(name)
    # call the method
    method.im_func(method.im_self, 1, 2, 3, fruit='banana')

基本上,绑定方法的im_self属性会发生变化,以允许在调用im_func时将其用作第一个参数

于 2009-06-05T06:31:40.190 回答
14

Python 2.6+(包括 Python 3)

您可以使用__self__绑定方法的属性来访问该方法绑定到的实例。

>> a.__self__
<__main__.test object at 0x782d0>
>> a.__self__.b = 2
>> obj.b
2

Python 2.2+(仅限 Python 2.x)

您也可以使用该im_self属性,但这与 Python 3 不兼容。

>> a.im_self
<__main__.test object at 0x782d0>
于 2009-06-05T05:06:02.753 回答
7

从 python2.6 开始,im_self和分别im_func__self__和的同义词__func__im*py3k 中的属性完全消失了。因此您需要将其更改为:

>> a.__self__
<__main__.test object at 0xb7b7d9ac>
>> a.__self__.b = 2
>> obj.b
2
于 2009-06-05T07:16:59.383 回答