我有一点我不明白的问题。
我有一个方法:
def appendMethod(self, newInstance = someObject()):
self.someList.append(newInstace)
我在没有属性的情况下调用此方法:
object.appendMethod()
实际上,我使用someObject的相同实例附加列表。
但如果我把它改为:
def appendMethod(self):
newInstace = someObject()
self.someList.append(newInstance)
我每次都得到该对象的新实例,有什么区别?
以下是一个例子:
class someClass():
myVal = 0
class otherClass1():
someList = []
def appendList(self):
new = someClass()
self.someList.append(new)
class otherClass2():
someList = []
def appendList(self, new = someClass()):
self.someList.append(new)
newObject = otherClass1()
newObject.appendList()
newObject.appendList()
print newObject.someList[0] is newObject.someList[1]
>>>False
anotherObject = otherClass2()
anotherObject.appendList()
anotherObject.appendList()
print anotherObject.someList[0] is anotherObject.someList[1]
>>>True
答案 0 :(得分:2)
这是因为您将默认参数指定为可变对象。
在python中,函数是一个在定义时被评估的对象,所以当你键入def appendList(self, new = someClass())
时,你将new
定义为函数的成员对象,并且它没有得到 - 在执行时评估。
请参阅“Least Astonishment” in Python: The Mutable Default Argument