我在試着用超級函數,下面是我執行的代碼。超級函數裏面調用python的方法2
class scene(object):
def enter(self):
print "a vllan s n your way. what you'll do?"
class centralcorrdor(scene):
print "startng pont of the game."
super(centralcorrdor,self).enter()
a = centralcorrdor()
但是這會給出錯誤。
class centralcorrdor(scene):
File "game.py", line 8, in centralcorrdor
super(centralcorrdor,self).enter()
NameError: name 'centralcorrdor' is not defined
而這沒有。
class scene(object):
def enter(self):
print "a vllan s n your way. what you'll do?"
class centralcorrdor(scene):
#print "startng pont of the game."
def func(self):
super(centralcorrdor,self).enter()
#scene.enter()
a = centralcorrdor()
a.func()
有人能說出原因嗎?超級被從子類中的方法內部調用了嗎?
您可以通過選擇代碼塊並單擊帶花括號的按鈕來格式化帖子中的代碼行。 – glibdud
你似乎對類是如何工作感到困惑。爲什麼你會打電話給超級 - 或打印 - 在方法之外? –
另外,鍵盤上的'i'鍵是否損壞?該代碼中有七個缺少'i's。 –