摘要: python中3种方式定义类方法,常规方式、@classmethod修饰方式、@staticmethod修饰方式。 class A(object): def foo(self, x): print('调用foo函数 (%s, %s)'%(self, x)) print('self:', self) 阅读全文
posted @ 2017-12-28 13:28 修仙小白 阅读(345) 评论(0) 推荐(0) 编辑