您好我正在學習計算機科學,我有一個要求,我必須在python中編寫兩個具有相同名稱的函數。我應該怎麼做?兩個函數相同的名字python
class QueueCards:
def __init__(self):
self.cards = []
def Add(self, other):
self.cards.insert(0, other)
def Add(self, listCards, numCards):
for i in numCards:
card = listCards.GetCard(i)
self.Add(card)
Count()
是隊列的大小。 謝謝。
真正的問題是,_why_你會這麼做嗎? – Lafexlos
我正在學習計算機科學,我被要求不幸地做到這一點 – rotemhas
它可以做到,它只是不漂亮,你可能不得不使用專門設計來做到這一點的包。看看下面的答案,它對你的問題有一個很好的解決方案。 –