摘要: Python中3种方式定义类方法, 常规方式, @classmethod修饰方式, @staticmethod修饰方式. class A(object): def foo(self, x): print("executing foo(%s,%s)" % (self, x)) print('self: 阅读全文
posted @ 2017-09-26 13:56 553490191 阅读(467) 评论(0) 推荐(0) 编辑