!-- flowchart 箭头图标 勿删 --
# coding:utf-8
# 静态方法,既不访问类属性,也不访问实例属性
# 修饰符为 @staticmethod
class Dog(object):
@staticmethod
def run():
print 'running ...'
# 类名直接调用静态方法
Dog.run()
# coding:u