在 Dive Into Python 中,Mark Pilgrim 说:
在定义你的类方法时,你必须明确地将 self 作为每个方法的第一个参数
然后他在代码中给出了几个例子:
def clear(self): self.data.clear()
def copy(self):
if self.__class__ is UserDict:
return UserDict(self.data)
import copy
return copy.copy(self)
在网上浏览一些 Python 代码时,我遇到了@classmethod
装饰器。一个例子是:
class Logger:
@classmethod
def debug(msg):
print "DEBUG: " + msg
(注意函数中没有self
参数debug
)
self
使用作为第一个参数和使用@classmethod
装饰器定义类方法有什么区别吗?如果不是,那么定义类方法的一种方法是否比另一种更常用/更受欢迎?