# coding:utf-8
# 静态方法,既不访问类属性,也不访问实例属性
# 修饰符为 @staticmethod
class Dog(object):
@staticmethod
def run():
print 'running ...'
# 类名直接调用静态方法
Dog.run()
Python学习 - 静态方法
最新推荐文章于 2024-06-05 12:16:19 发布
# coding:utf-8
# 静态方法,既不访问类属性,也不访问实例属性
# 修饰符为 @staticmethod
class Dog(object):
@staticmethod
def run():
print 'running ...'
# 类名直接调用静态方法
Dog.run()