使用说明
1、静态方法取消了不必要的参数传输,可以减少不必要的内存占用和性能消耗。
2、当同名静态方法在类中定义时,调用方法将优先考虑最终定义方法。
实例
classDate: def__init__(self,year,month,day): self.year=year self.month=month self.day=day def__str__(self): return("{year}-{month}-{day}").format(year=self.year,month=self.month,day=self.day) defyesterday(Date): Date.day-=1 @staticmethod#用这个装饰表示是静态方法,这个要注意。 defstatic(date_str): year,month,day=tuple(date_str.split("-")) returnDate(int(year),int(month),int(day)) new_day=Date.static("2018-10-10")#因为静态方法不属于实例,所以调用时要注意类名和静态方法。 print(new_day) #打印结果正好是我们的预期结果。 2018-10-10
以上是使用python静态方法的注意事项,希望对大家有所帮助。更多Python学习指导:python基础教程
本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。