您现在的位置是:课程教程文章
python静态方法的使用注意点
2023-12-14 20:30课程教程文章 人已围观
使用说明
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电脑。
课程教程:python静态方法的使用注意点上一篇:python访问元组的两种方法
下一篇:没有了