静态方法是类中的函数,通过@staticmethod装饰器实现,不需要实例。静态方法主要是用来存放逻辑性的代码,逻辑上属于类,但是本身和类没有关系,也就是说在静态方法中,不会涉及类中的属性和方法的操作。可以理解为,静态方法是个独立的单纯的函数,它不仅仅托管于某个类的名称空间中,便于使用和维护。
import time
class Time:
def __init__(self,hour,minute,second):
self.hour=hour
self.minute=minute
self.second=second
@staticmethod
def current_time(self):
print('当前时间戳为:%s' % time.time())
# Time.current_time() #直接用类来调用
t1=Time(5,20,30)
Time.current_time(t1) #通过对象来调用