摘要: class Game(): # 这是个类属性 top_fen = 0 @classmethod # 这是类方法 def show_top_fen(cls): print("最高分是%d,这是个类方法" % cls.top_fen) @staticmethod # 这是个静态方法 def show_help(): ... 阅读全文
posted @ 2019-04-07 10:22 xusuns 阅读(128) 评论(0) 推荐(0) 编辑