导语:
本文主要介绍了关于python静态方法的使用注意点的相关知识,希望可以帮到处于编程学习途中的小伙伴
使用说明
1、静态方法取消了不必要的参数传递,可以减少不必要的内存占用和性能消耗。
2.当类中定义了同名的静态方法时,调用方法会先执行最后定义的方法。
实例
class Date:
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)
def yesterday(Date):
Date.day -= 1
@staticmethod # 用这个装饰器表明是静态方法,这个要注意。
def static(date_str):
year, month, day = tuple(date_str.split("-"))
return Date(int(year), int(month), int(day))
new_day=Date.static("2018-10-10") #由于静态方法不属于实例 所以调用的时候, 用类名.静态方法,这个要注意
print(new_day)
#打印结果 正好是咱们的预期结果。
2018-10-10
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在atom中运行python程序?09/23
- ♥ 探索 python 可迭代对象的本质12/21
- ♥ python如何测试程序11/05
- ♥ python如何根据字典的key删除元素12/22
- ♥ python中datetime的基本介绍11/26
- ♥ python中如何判断字符的大小写09/21
内容反馈