我想创建一个使用类似于此的策略设计模式的类:
class C: @staticmethod def default_concrete_strategy(): print("default") @staticmethod def other_concrete_strategy(): print("other") def __init__(self,strategy=C.default_concrete_strategy): self.strategy = strategy def execute(self): self.strategy()
这给出了错误:
NameError: name 'C' is not defined
使用strategy = default_concrete_strategy替换策略= C.default_concrete_strategy将起作用,但默认情况下,策略实例变量将是静态方法对象而不是可调用方法.
TypeError: 'staticmethod' object is not callable
如果我删除@staticmethod装饰器,它会工作,但还有其他方法吗?我希望自己记录默认参数,以便其他人立即看到如何包含策略的示例.
解决方法
不,您不能,因为类定义尚未完成运行,因此当前名称空间中尚不存在类名.
您可以直接使用函数对象:
class C: @staticmethod def default_concrete_strategy(): print("default") @staticmethod def other_concrete_strategy(): print("other") def __init__(self,strategy=default_concrete_strategy.__func__): self.strategy = strategy
在定义方法时,C尚不存在,因此您可以通过本地名称引用default_concrete_strategy. .__ func__解包staticmethod描述符以访问底层原始函数(staticmethod描述符本身不可调用).
另一种方法是使用哨兵默认值;由于策略的所有正常值都是静态函数,因此没有一个可以正常工作:
class C: @staticmethod def default_concrete_strategy(): print("default") @staticmethod def other_concrete_strategy(): print("other") def __init__(self,strategy=None): if strategy is None: strategy = self.default_concrete_strategy self.strategy = strategy
由于这从self检索default_concrete_strategy,因此调用描述符协议,并且在类定义完成之后,staticmethod描述符本身返回(未绑定)函数.