gpt4 book ai didi

python - 重写的方法是否继承python中的装饰器?

转载 作者:IT老高 更新时间:2023-10-28 21:42:57 25 4
gpt4 key购买 nike

正如标题所说,被覆盖的方法会继承装饰器吗?

class A:
@memoized
def fun(self, arg):
return None


class B(A):
def fun(self, arg):
#computations
return something

B.fun() 也维护装饰器吗?

最佳答案

这样想

class A(object):
def fun(self, arg):
return None
fun = memoized(fun)

关于python - 重写的方法是否继承python中的装饰器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4350260/

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