Python:Decorator可以从foo1()访问参数并将其提供给foo2()吗?

时间:2013-05-22 15:39:39

标签: python python-2.7 python-decorators

更准确地说

@string_supply #This should supply **string** from foo1 into foo2
def foo2(x):
    #Cannot use global string. string changes
    return list(itertools.compress(string, x)) # **string** needed here

def foo1(startrange, string):
    temp = None
    temp_list = map(temp, start_range_compute_list(startrange))
    ls_of = map(foo2, temp_list)
    yield ls_of

@string_supply装饰器可以像这样写吗?我对装饰师没有经验。

1 个答案:

答案 0 :(得分:2)

不,它不能。装饰者无法访问装饰函数的内部。也许它可以通过一些肮脏的黑客来实现,但恕我直言,避免这种解决方案会更好。

从您所描述的架构 - 看起来您需要具有实例变量的类。类似的东西:

class Simple(object):
    def __init__(self):
        self._string = ""

    def foo2(self, x):
        #Cannot use global string. string changes
        return list(itertools.compress(self._string, x)) # **string** needed here

    def foo1(self, startrange, string):
        self._string = string
        temp = None
        temp_list = map(temp, start_range_compute_list(startrange))
        ls_of = map(foo2, temp_list)
        yield ls_of