我不明白創建類時實例的重要性。在一本關於Python編程的書中,我發現了關於創建一個轉換度量單位的類的示例: 因此,類參數是初始單位,新單位和轉換因子。python中類的實例的重要性
class ScaleConverter:
def __init__(self, units_from, units_to, factor):
self.units_from = units_from
self.units_to = units_to
self.factor = factor
def description(self):
return "Convert " + self.units_from + "to" + self.units_to
def convert(self, value):
return value * self.factor
c1 = ScaleConverter("inches", "mm", 25)
所以,我不明白,如果我離開了c1 = ScaleConverter("inches", "mm", 25)
我試圖將其清除和類作品無論如何會發生什麼。它的重要性是什麼?
在什麼意義上「有效」? – khelwood 2014-10-30 11:40:39
'試圖清除它並且類無論如何',請解釋。 – Abhijit 2014-10-30 11:40:56
@khelwood無誤地運行。我不太清楚我需要向OP解釋什麼,因爲我很難理解他/她如何不理解。 – 2014-10-30 11:41:19