Python 面向?qū)ο?/span> Python從設計之初就已經(jīng)是一門面向?qū)ο蟮恼Z言,正因為如此,在Python中創(chuàng)建一個類和對象是很容易的。本章節(jié)我們將詳細介紹Python的面向?qū)ο缶幊獭?/p> 如果你以前沒有接觸過面向?qū)ο蟮木幊陶Z言,那你可能需要先了解一些面向?qū)ο笳Z言的一些基本特征,在頭腦里頭形成一個基本的面向?qū)ο蟮母拍?,這樣有助于你更容易的學習Python的面向?qū)ο缶幊獭?/p> 面向?qū)ο蠹夹g(shù)簡介
創(chuàng)建類使用class語句來創(chuàng)建一個新類,class之后為類的名稱并以冒號結(jié)尾,如下實例: class ClassName: '類的幫助信息' #類文檔字符串 class_suite #類體 類的幫助信息可以通過ClassName.__doc__查看。 class_suite 由類成員,方法,數(shù)據(jù)屬性組成。 實例以下是一個簡單的Python類實例: #!/usr/bin/python # -*- coding: UTF-8 -*- class Employee: '所有員工的基類' empCount = 0 def __init__(self, name, salary): self.name = name self.salary = salary Employee.empCount += 1 def displayCount(self): print "Total Employee %d" % Employee.empCount def displayEmployee(self): print "Name : ", self.name, ", Salary: ", self.salary
創(chuàng)建實例對象要創(chuàng)建一個類的實例,你可以使用類的名稱,并通過__init__方法接受參數(shù)。 "創(chuàng)建 Employee 類的第一個對象" emp1 = Employee("Zara", 2000) "創(chuàng)建 Employee 類的第二個對象" emp2 = Employee("Manni", 5000) 訪問屬性您可以使用點(.)來訪問對象的屬性。使用如下類的名稱訪問類變量: emp1.displayEmployee() emp2.displayEmployee() print "Total Employee %d" % Employee.empCount 完整實例: #!/usr/bin/python # -*- coding: UTF-8 -*- class Employee: '所有員工的基類' empCount = 0 def __init__(self, name, salary): self.name = name self.salary = salary Employee.empCount += 1 def displayCount(self): print "Total Employee %d" % Employee.empCount def displayEmployee(self): print "Name : ", self.name, ", Salary: ", self.salary "創(chuàng)建 Employee 類的第一個對象" emp1 = Employee("Zara", 2000) "創(chuàng)建 Employee 類的第二個對象" emp2 = Employee("Manni", 5000) emp1.displayEmployee() emp2.displayEmployee() print "Total Employee %d" % Employee.empCount 執(zhí)行以上代碼輸出結(jié)果如下: Name : Zara ,Salary: 2000 Name : Manni ,Salary: 5000 Total Employee 2 你可以添加,刪除,修改類的屬性,如下所示: emp1.age = 7 # 添加一個 'age' 屬性 emp1.age = 8 # 修改 'age' 屬性 del emp1.age # 刪除 'age' 屬性 你也可以使用以下函數(shù)的方式來訪問屬性:
hasattr(emp1, 'age') # 如果存在 'age' 屬性返回 True。 getattr(emp1, 'age') # 返回 'age' 屬性的值 setattr(emp1, 'age', 8) # 添加屬性 'age' 值為 8 delattr(empl, 'age') # 刪除屬性 'age' Python內(nèi)置類屬性
Python內(nèi)置類屬性調(diào)用實例如下: #!/usr/bin/python # -*- coding: UTF-8 -*- class Employee: '所有員工的基類' empCount = 0 def __init__(self, name, salary): self.name = name self.salary = salary Employee.empCount += 1 def displayCount(self): print "Total Employee %d" % Employee.empCount def displayEmployee(self): print "Name : ", self.name, ", Salary: ", self.salary print "Employee.__doc__:", Employee.__doc__ print "Employee.__name__:", Employee.__name__ print "Employee.__module__:", Employee.__module__ print "Employee.__bases__:", Employee.__bases__ print "Employee.__dict__:", Employee.__dict__ 執(zhí)行以上代碼輸出結(jié)果如下: Employee.__doc__: 所有員工的基類 Employee.__name__: Employee Employee.__module__: __main__ Employee.__bases__: () Employee.__dict__: {'__module__': '__main__', 'displayCount': <function displayCount at 0x10a939c80>, 'empCount': 0, 'displayEmployee': <function displayEmployee at 0x10a93caa0>, '__doc__': '\xe6\x89\x80\xe6\x9c\x89\xe5\x91\x98\xe5\xb7\xa5\xe7\x9a\x84\xe5\x9f\xba\xe7\xb1\xbb', '__init__': <function __init__ at 0x10a939578>} python對象銷毀(垃圾回收)同Java語言一樣,Python使用了引用計數(shù)這一簡單技術(shù)來追蹤內(nèi)存中的對象。 在Python內(nèi)部記錄著所有使用中的對象各有多少引用。 一個內(nèi)部跟蹤變量,稱為一個引用計數(shù)器。 當對象被創(chuàng)建時, 就創(chuàng)建了一個引用計數(shù), 當這個對象不再需要時, 也就是說, 這個對象的引用計數(shù)變?yōu)? 時, 它被垃圾回收。但是回收不是"立即"的, 由解釋器在適當?shù)臅r機,將垃圾對象占用的內(nèi)存空間回收。 a = 40 # 創(chuàng)建對象 <40> b = a # 增加引用, <40> 的計數(shù) c = [b] # 增加引用. <40> 的計數(shù) del a # 減少引用 <40> 的計數(shù) b = 100 # 減少引用 <40> 的計數(shù) c[0] = -1 # 減少引用 <40> 的計數(shù) 垃圾回收機制不僅針對引用計數(shù)為0的對象,同樣也可以處理循環(huán)引用的情況。循環(huán)引用指的是,兩個對象相互引用,但是沒有其他變量引用他們。這種情況下,僅使用引用計數(shù)是不夠的。Python 的垃圾收集器實際上是一個引用計數(shù)器和一個循環(huán)垃圾收集器。作為引用計數(shù)的補充, 垃圾收集器也會留心被分配的總量很大(及未通過引用計數(shù)銷毀的那些)的對象。 在這種情況下, 解釋器會暫停下來, 試圖清理所有未引用的循環(huán)。 實例析構(gòu)函數(shù) __del__ ,__del__在對象消逝的時候被調(diào)用,當對象不再被使用時,__del__方法運行: #!/usr/bin/python # -*- coding: UTF-8 -*- class Point: def __init( self, x=0, y=0): self.x = x self.y = y def __del__(self): class_name = self.__class__.__name__ print class_name, "destroyed" pt1 = Point() pt2 = pt1 pt3 = pt1 print id(pt1), id(pt2), id(pt3) # 打印對象的id del pt1 del pt2 del pt3 以上實例運行結(jié)果如下: 3083401324 3083401324 3083401324
Point destroyed 注意:通常你需要在單獨的文件中定義一個類, 類的繼承面向?qū)ο蟮木幊處淼闹饕锰幹皇谴a的重用,實現(xiàn)這種重用的方法之一是通過繼承機制。繼承完全可以理解成類之間的類型和子類型關(guān)系。 需要注意的地方:繼承語法 class 派生類名(基類名)://... 基類名寫作括號里,基本類是在類定義的時候,在元組之中指明的。 在python中繼承中的一些特點:
如果在繼承元組中列了一個以上的類,那么它就被稱作"多重繼承" 。 語法: 派生類的聲明,與他們的父類類似,繼承的基類列表跟在類名之后,如下所示: class SubClassName (ParentClass1[, ParentClass2, ...]): 'Optional class documentation string' class_suite 實例: #!/usr/bin/python # -*- coding: UTF-8 -*- class Parent: # 定義父類 parentAttr = 100 def __init__(self): print "調(diào)用父類構(gòu)造函數(shù)" def parentMethod(self): print '調(diào)用父類方法' def setAttr(self, attr): Parent.parentAttr = attr def getAttr(self): print "父類屬性 :", Parent.parentAttr class Child(Parent): # 定義子類 def __init__(self): print "調(diào)用子類構(gòu)造方法" def childMethod(self): print '調(diào)用子類方法 child method' c = Child() # 實例化子類 c.childMethod() # 調(diào)用子類的方法 c.parentMethod() # 調(diào)用父類方法 c.setAttr(200) # 再次調(diào)用父類的方法 c.getAttr() # 再次調(diào)用父類的方法 以上代碼執(zhí)行結(jié)果如下: 調(diào)用子類構(gòu)造方法
調(diào)用子類方法 child method
調(diào)用父類方法
父類屬性 : 200 你可以繼承多個類 你可以使用issubclass()或者isinstance()方法來檢測。
方法重寫如果你的父類方法的功能不能滿足你的需求,你可以在子類重寫你父類的方法: 實例: #!/usr/bin/python # -*- coding: UTF-8 -*- class Parent: # 定義父類 def myMethod(self): print '調(diào)用父類方法' class Child(Parent): # 定義子類 def myMethod(self): print '調(diào)用子類方法' c = Child() # 子類實例 c.myMethod() # 子類調(diào)用重寫方法 執(zhí)行以上代碼輸出結(jié)果如下: 調(diào)用子類方法 基礎(chǔ)重載方法下表列出了一些通用的功能,你可以在自己的類重寫:
運算符重載Python同樣支持運算符重載,實例如下: #!/usr/bin/python class Vector: def __init__(self, a, b): self.a = a self.b = b def __str__(self): return 'Vector (%d, %d)' % (self.a, self.b) def __add__(self,other): return Vector(self.a + other.a, self.b + other.b) v1 = Vector(2,10) v2 = Vector(5,-2) print v1 + v2 以上代碼執(zhí)行結(jié)果如下所示: Vector(7,8) 類屬性與方法類的私有屬性__private_attrs:兩個下劃線開頭,聲明該屬性為私有,不能在類地外部被使用或直接訪問。在類內(nèi)部的方法中使用時self.__private_attrs。 類的方法在類地內(nèi)部,使用def關(guān)鍵字可以為類定義一個方法,與一般函數(shù)定義不同,類方法必須包含參數(shù)self,且為第一個參數(shù) 類的私有方法__private_method:兩個下劃線開頭,聲明該方法為私有方法,不能在類地外部調(diào)用。在類的內(nèi)部調(diào)用 self.__private_methods 實例#!/usr/bin/python # -*- coding: UTF-8 -*- class JustCounter: __secretCount = 0 # 私有變量 publicCount = 0 # 公開變量 def count(self): self.__secretCount += 1 self.publicCount += 1 print self.__secretCount counter = JustCounter() counter.count() counter.count() print counter.publicCount print counter.__secretCount # 報錯,實例不能訪問私有變量 Python 通過改變名稱來包含類名: 1 2 2 Traceback (most recent call last): File "test.py", line 17, in <module> print counter.__secretCount # 報錯,實例不能訪問私有變量 AttributeError: JustCounter instance has no attribute '__secretCount' Python不允許實例化的類訪問私有數(shù)據(jù),但你可以使用 object._className__attrName 訪問屬性,將如下代碼替換以上代碼的最后一行代碼: ......................... print counter._JustCounter__secretCount 執(zhí)行以上代碼,執(zhí)行結(jié)果如下: 1 2 2 2
|
|