函数是否有通用的方式来引用自身?

时间:2011-02-21 08:07:23

标签: python function reference self

我可以通过下面的代码访问函数内部的python函数的属性:

def aa():
    print aa.__name__
    print aa.__hash__
    # other simliar

但是,如果上面aa()函数是用于编写其他代码的模板,比如bb(),我必须写:

def bb():
    print bb.__name__
    print bb.__hash__
    # other simliar

在类方法中是否有类似self参数的“指针”,所以我可以编写这样的代码?

def whatever():
    print self.__name__
    print self.__hash__
    # other simliar

我搜索并发现有人说使用该类来解决这个问题,但重新定义所有现有功能可能会有麻烦。有什么建议吗?

4 个答案:

答案 0 :(得分:27)

函数没有通用的方法来引用它自己。考虑使用装饰器。如果您想要的只是打印有关可以使用装饰器轻松完成的功能的信息:

from functools import wraps
def showinfo(f):
    @wraps(f)
    def wrapper(*args, **kwds):
         print(f.__name__, f.__hash__)
         return f(*args, **kwds)
    return wrapper

@showinfo
def aa():
    pass

如果确实需要引用该函数,则只需将其添加到函数参数中:

def withself(f):
    @wraps(f)
    def wrapper(*args, **kwds):
        return f(f, *args, **kwds)
    return wrapper

@withself
def aa(self):
      print(self.__name__)
      # etc.

编辑以添加备用装饰器

您还可以编写一个更简单(也可能更快)的装饰器,它将使包装函数在Python的内省中正常工作:

def bind(f):
    """Decorate function `f` to pass a reference to the function
    as the first argument"""
    return f.__get__(f, type(f))

@bind
def foo(self, x):
    "This is a bound function!"
    print(self, x)


>>> foo(42)
<function foo at 0x02A46030> 42
>>> help(foo)
Help on method foo in module __main__:

foo(self, x) method of builtins.function instance
    This is a bound function!

这利用了Python的描述符协议:函数具有__get__方法,用于创建绑定方法。装饰器只是使用现有方法使函数成为自身的绑定方法。它只适用于独立函数,如果你想让一个方法能够引用自己,你就必须做更像原始解决方案的事情。

答案 1 :(得分:12)

http://docs.python.org/library/inspect.html看起来很有希望:

import inspect
def foo():
     felf = globals()[inspect.getframeinfo(inspect.currentframe()).function]
     print felf.__name__, felf.__doc__

您还可以使用sys模块获取当前函数的名称:

import sys
def bar():
     felf = globals()[sys._getframe().f_code.co_name]
     print felf.__name__, felf.__doc__

答案 2 :(得分:0)

您至少可以在第一行说self = bb,然后仅在更改函数名称时才需要更改该行,而不是其他所有引用。

我的代码编辑器也以与对类相同的方式突出显示变量self

答案 3 :(得分:-4)

快速破解如何创建自己的“自我”名称,如下:

>>> def f():
...     self = f
...     print "My name is ", self.__name__, "and I am", self.__hash__
...
>>> f()
My name is  f and I am <method-wrapper '__hash__' of function object at 0x00B50F30>
>>> x = f
>>> x()
My name is  f and I am <method-wrapper '__hash__' of function object at 0x00B50F30>
>>>