這裏是我的,哈哈類使用`object`實例化自定義類
class haha(object):
def theprint(self):
print "i am here"
>>> haha().theprint()
i am here
>>> haha(object).theprint()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: object.__new__() takes no parameters
爲什麼haha(object).theprint()
得到錯誤的輸出?
你在期待'哈哈(對象)'做什麼? – BrenBarn
OP令人困惑的繼承與實例化 – inspectorG4dget
雖然這是一個新手問題,但我認爲作者正在嘗試一個很好的問題,這是一個可以理解的混淆。在我的書中,不是一個downvote的理由。 –