標籤:
Python 類的封裝
承接上一節,學了Student類的定義及執行個體化,每個執行個體都擁有各自的name和score。現在若需要列印一個學生的成績,就可定義函數 print_score()
該函數為類外的函數,如下:
1 class Student: 2 def __init__(self, name, score): 3 self.name = name 4 self.score = score 5 6 May = Student("May",90) # 執行個體化 7 Peter = Student("Peter",85) 8 9 def print_score(Student):10 print("%s‘s score is: %d" %(Student.name,Student.score))11 12 print_score(May) 13 print_score(Peter)
既然Student執行個體本身就擁有這些資料,要訪問這些資料,就沒有必要從外面的函數去訪問,我們可以直接在Student類的內部定義訪問資料的函數。這樣,就把資料給“封裝”起來了。
“封裝”就是將抽象得到的資料和行為(或功能)相結合,形成一個有機的整體(即類);封裝的目的是增強安全性和簡化編程,使用者不必瞭解具體的實現細節,而只是要通過外部介面,一特定的存取權限來使用類的成員。
而這些封裝資料的函數是和Student類本身是關聯起來的,我們稱之為類的方法。那如何定義類的方法呢?
就要用到對象 self 本身,參考上例,把 print_score() 函數寫為類的方法(Python2.7之後的版本,推薦.format 輸出寫法):
1 class Student: 2 def __init__(self, name, score): 3 self.name = name 4 self.score = score 5 6 def print_score(self): 7 # print("%s‘s score is: %d" %(self.name,self.score)) 8 print("{self.name}‘s score is: {self.score}".format(self=self)) # Python 2.7 + .format最佳化寫法 9 10 May = Student("May",90) 11 Peter = Student("Peter",85) 12 13 May.print_score()14 Peter.print_score()
定義類的方法:除了第一個參數是self外,其他和普通函數一樣。
執行個體調用方法:只需要在執行個體變數上直接調用,除了self不用傳遞,其他參數正常傳入;注意,若類的方法僅需要self,不需要其他,調用該方法時,僅需 instance_name.function_name()
這樣一來,我們從外部看Student類,就只需要知道,建立執行個體需要給出name和score,而如何列印,都是在Student類的內部定義的,這些資料和邏輯被“封裝”起來了,調用很容易,但卻不用知道內部實現的細節。
封裝的另一個好處是可以給Student類增加新的方法;這邊的方法也可以要求傳參,如新增定義compare 函數,如下
1 class Student: 2 def __init__(self, name, score): 3 self.name = name 4 self.score = score 5 6 def print_score(self): 7 # print("%s‘s score is: %d" %(self.name,self.score)) 8 print("{self.name}‘s score is: {self.score}".format(self=self)) # Python 2.7 + .format最佳化寫法 9 10 def compare(self,s):11 if self.score>s:12 print("better than %d" %(s))13 elif self.score==s:14 print("equal %d" %(s))15 else:16 print("lower than %d" %(s))17 18 May = Student("May",90) 19 Peter = Student("Peter",85) 20 21 May.print_score()22 Peter.print_score()23 24 May.compare(100)25 May.compare(90)26 May.compare(89)
Python學習(七)物件導向 ——封裝