Python類的專用方法
Python 類可以定義專用方法,專用方法是在特殊情況下或當使用特別語法時由 Python 替你呼叫的,而不是在程式碼中直接呼叫(象普通的方法那樣)。
.1 __init__
類似於建構函式
#!/usr/local/bin/python
class Study:
def __init__(self,name=None):
self.name = name
def say(self):
print self.name
study = Study("Badboy")
study.say()
.2 __del__
類似於解構函式
#!/usr/local/bin/python
class Study:
def __init__(self,name=None):
self.name = name
def __del__(self):
print "Iamaway,baby!"
def say(self):
print self.name
study = Study("zhuzhengjun")
study.say()
.3__repr__
使用repr(obj)的時候,會自動呼叫__repr__函式,該函式返回物件字串表示式,
用於重建物件,如果eval(repr(obj))會得到一個物件的拷貝。
#!/usr/local/bin/python
class Study:
def __init__(self,name=None):
self.name = name
def __del__(self):
print "Iamaway,baby!"
def say(self):
print self.name
def __repr__(self):
return "Study('jacky')"
study = Study("zhuzhengjun")
study.say()
print type(repr(Study("zhuzhengjun"))) # str
print type(eval(repr(Study("zhuzhengjun")))) # instance
study = eval(repr(Study("zhuzhengjun")))
study.say()
.4__str__
Python能用print語句輸出內建資料型別。有時,程式設計師希望定義一個類,要求它的物件也能用print語句輸出。Python類可定義特殊方法__str__,為類的物件提供一個不正式的字串表示。如果類的客戶程式包含以下語句:
print objectOfClass
那麼Python會呼叫物件的__str__方法,並輸出那個方法所返回的字串。
#!/usr/local/bin/python
class PhoneNumber:
def __init__(self,number):
self.areaCode=number[1:4]
self.exchange=number[6:9]
self.line=number[10:14]
def __str__(self):
return "(%s) %s-%s"%(self.areaCode,self.exchange,self.line)
def test():
newNumber=raw_input("Enter phone number in the form. (123) 456-7890: \n")
phone=PhoneNumber(newNumber)
print "The phone number is:"
print phone
if__name__=="__main__":
test()
方法__init__接收一個形如"(xxx) xxx-xxxx"的字串。字串中的每個x都是電話號碼的一個位數。方法對字串進行分解,並將電話號碼的不同部分作為屬性儲存。
方法__str__是一個特殊方法,它構造並返回PhoneNumber類的一個物件的字串表示。解析器一旦遇到如下語句:
print phone
就會執行以下語句:
print phone.__str__()
程式如果將PhoneNumber物件傳給內建函式str(如str(phone)),或者為PhoneNumber物件使用字串格式化運算子%(例如"%s"%phone),Python也會呼叫__str__方法。
.5__cmp __
比較運算子,0:等於 1:大於 -1:小於
class Study:
def __cmp__(self, other):
if other > 0 :
return 1
elif other < 0:
return - 1
else:
return 0
study = Study()
if study > -10:print 'ok1'
if study < -10:print 'ok2'
if study == 0:print 'ok3'
列印:ok2 ok3
說明:在對類進行比較時,python自動呼叫__cmp__方法,如-10 < 0 返回 -1,也就是說study 應該小與 -10,估列印ok2
.6__getitem__
__getitem__ 專用方法很簡單。象普通的方法 clear,keys 和 values 一樣,它只是重定向到字典,返回字典的值。
class Zoo:
def __getitem__(self, key):
if key == 'dog':return 'dog'
elif key == 'pig':return 'pig'
elif key == 'wolf':return 'wolf'
else:return 'unknown'
zoo = Zoo()
print zoo['dog']
print zoo['pig']
print zoo['wolf']
列印 dog pig wolf
.7__setitem__
__setitem__ 簡單地重定向到真正的字典 self.data ,讓它來進行工作。
class Zoo:
def __setitem__(self, key, value):
print 'key=%s,value=%s' % (key, value)
zoo = Zoo()
zoo['a'] = 'a'
zoo['b'] = 'b'
zoo['c'] = 'c'
列印:
key=a,value=a
key=b,value=b
key=c,value=c
.8 __delitem__
__delitem__ 在呼叫 del instance[key] 時呼叫 ,你可能記得它作為從字典中刪除單個元素的方法。當你在類例項中使用 del 時,Python 替你呼叫 __delitem__ 專用方法。
class A:
def __delitem__(self, key):
print 'delete item:%s' %key
a = A()
del a['key']
.1 __init__
類似於建構函式
#!/usr/local/bin/python
class Study:
def __init__(self,name=None):
self.name = name
def say(self):
print self.name
study = Study("Badboy")
study.say()
.2 __del__
類似於解構函式
#!/usr/local/bin/python
class Study:
def __init__(self,name=None):
self.name = name
def __del__(self):
print "Iamaway,baby!"
def say(self):
print self.name
study = Study("zhuzhengjun")
study.say()
.3__repr__
使用repr(obj)的時候,會自動呼叫__repr__函式,該函式返回物件字串表示式,
用於重建物件,如果eval(repr(obj))會得到一個物件的拷貝。
#!/usr/local/bin/python
class Study:
def __init__(self,name=None):
self.name = name
def __del__(self):
print "Iamaway,baby!"
def say(self):
print self.name
def __repr__(self):
return "Study('jacky')"
study = Study("zhuzhengjun")
study.say()
print type(repr(Study("zhuzhengjun"))) # str
print type(eval(repr(Study("zhuzhengjun")))) # instance
study = eval(repr(Study("zhuzhengjun")))
study.say()
.4__str__
Python能用print語句輸出內建資料型別。有時,程式設計師希望定義一個類,要求它的物件也能用print語句輸出。Python類可定義特殊方法__str__,為類的物件提供一個不正式的字串表示。如果類的客戶程式包含以下語句:
print objectOfClass
那麼Python會呼叫物件的__str__方法,並輸出那個方法所返回的字串。
#!/usr/local/bin/python
class PhoneNumber:
def __init__(self,number):
self.areaCode=number[1:4]
self.exchange=number[6:9]
self.line=number[10:14]
def __str__(self):
return "(%s) %s-%s"%(self.areaCode,self.exchange,self.line)
def test():
newNumber=raw_input("Enter phone number in the form. (123) 456-7890: \n")
phone=PhoneNumber(newNumber)
print "The phone number is:"
print phone
if__name__=="__main__":
test()
方法__init__接收一個形如"(xxx) xxx-xxxx"的字串。字串中的每個x都是電話號碼的一個位數。方法對字串進行分解,並將電話號碼的不同部分作為屬性儲存。
方法__str__是一個特殊方法,它構造並返回PhoneNumber類的一個物件的字串表示。解析器一旦遇到如下語句:
print phone
就會執行以下語句:
print phone.__str__()
程式如果將PhoneNumber物件傳給內建函式str(如str(phone)),或者為PhoneNumber物件使用字串格式化運算子%(例如"%s"%phone),Python也會呼叫__str__方法。
.5__cmp __
比較運算子,0:等於 1:大於 -1:小於
class Study:
def __cmp__(self, other):
if other > 0 :
return 1
elif other < 0:
return - 1
else:
return 0
study = Study()
if study > -10:print 'ok1'
if study < -10:print 'ok2'
if study == 0:print 'ok3'
列印:ok2 ok3
說明:在對類進行比較時,python自動呼叫__cmp__方法,如-10 < 0 返回 -1,也就是說study 應該小與 -10,估列印ok2
.6__getitem__
__getitem__ 專用方法很簡單。象普通的方法 clear,keys 和 values 一樣,它只是重定向到字典,返回字典的值。
class Zoo:
def __getitem__(self, key):
if key == 'dog':return 'dog'
elif key == 'pig':return 'pig'
elif key == 'wolf':return 'wolf'
else:return 'unknown'
zoo = Zoo()
print zoo['dog']
print zoo['pig']
print zoo['wolf']
列印 dog pig wolf
.7__setitem__
__setitem__ 簡單地重定向到真正的字典 self.data ,讓它來進行工作。
class Zoo:
def __setitem__(self, key, value):
print 'key=%s,value=%s' % (key, value)
zoo = Zoo()
zoo['a'] = 'a'
zoo['b'] = 'b'
zoo['c'] = 'c'
列印:
key=a,value=a
key=b,value=b
key=c,value=c
.8 __delitem__
__delitem__ 在呼叫 del instance[key] 時呼叫 ,你可能記得它作為從字典中刪除單個元素的方法。當你在類例項中使用 del 時,Python 替你呼叫 __delitem__ 專用方法。
class A:
def __delitem__(self, key):
print 'delete item:%s' %key
a = A()
del a['key']
相關文章
- Python的類方法Python
- 033 Python語法之類的專有方法Python
- 專題:Python 的內建字串方法(收藏專用)Python字串
- Python 的內建字串方法(收藏專用)Python字串
- python類中的方法Python
- Python_11 類的方法Python
- python建立類和類方法Python
- Python建立類方法Python
- Python Class 的例項方法/類方法/靜態方法Python
- Python 靜態方法和類方法的區別Python
- Python的靜態方法和類成員方法Python
- Python例項方法、類方法、靜態方法Python
- python之建立類的兩種方法Python
- Python 類變動的鉤子方法Python
- 用反射呼叫Method類的invoke方法反射
- 深入剖析 Java 類屬性與類方法的應用Java
- python:類3——魔法方法Python
- Python中類的建立和使用方法Python
- python過載父類的__init__方法Python
- Python (類)例項方法的特殊屬性Python
- Python的類什麼時候用Python
- python列表刪除專案的方法Python
- 用兩種方法把JSON資料格式轉換為Python的類物件JSONPython物件
- Python科普系列——類與方法(上篇)Python
- Python科普系列——類與方法(下篇)Python
- python中類方法的區別是什麼Python
- Python 10-4——重寫父類的方法Python
- Python 裝飾器裝飾類中的方法Python
- python為什麼用類Python
- 用於golang的類python shell環境GolangPython
- python 類和元類(metaclass)的理解和簡單運用Python
- 交叉引用的解決方法——類宣告的應用
- Python 簡明教程 --- 20,Python 類中的屬性與方法Python
- python 類的子類Python
- python類的子類Python
- Python 動態新增例項屬性,例項方法,類屬性,類方法Python
- Python進階之物件導向(類的特殊方法)Python物件
- 用Python實現文件聚類Python聚類