对某个属性进行访问的时候,不需要经过反复的计算再返回
对属性的首次访问,将其值缓存起来,在其后的访问中,直接从缓存中取值,主要用来提高程序的性能
""" 属性惰性求值 这里介入描述符就可以实现 """ class LazyProperty: def __init__(self, func): self.func = func def __get__(self, instance, owner): if instance is None: return self value = self.func(instance) setattr(instance, self.func.__name__, value) return value class Valley: @LazyProperty def age(self): print("shi_xiao_gu_a") return 2 * 13 v = Valley() print(v.age) print(v.age)
output:
shi_xiao_gu_a
26
26
可见文本内容只打印了一次
文章来源:https://www.toymoban.com/news/detail-454637.html
文章来源地址https://www.toymoban.com/news/detail-454637.html
到了这里,关于让属性具备惰性求值的能力的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!