摘要: 一:调用区别 class Demo(object): @staticmethod def static_method(): return "static_method" @classmethod def instance_method(self): return "instance_method" 阅读全文
posted @ 2020-04-03 15:55 张京墨 阅读(1547) 评论(0) 推荐(0) 编辑