python staticmethod , classmethod
摘要:
@staticmethod和@classmethod Python其实有3个方法,即静态方法(staticmethod),类方法(classmethod)和实例方法,如下: def foo(x): print "executing foo(%s)"%(x) class A(object): def 阅读全文
posted @ 2018-04-13 10:48 永恒自由森林 阅读(197) 评论(0) 推荐(0) 编辑