您好,登錄后才能下訂單哦!
Python中有哪些常用的特殊方法?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
1 __init__和__new__
__init__
方法用來初始化類實(shí)例;__new__
方法用來創(chuàng)建類實(shí)例。
主要的區(qū)別:
1).__init__通常用于初始化一個(gè)新實(shí)例,控制初始化的過程,發(fā)生在類實(shí)例被創(chuàng)建完以后。它是實(shí)例級(jí)別的方法。
2).__new__通常用于控制生成一個(gè)新實(shí)例的過程。它是類級(jí)別的方法。
__new__具體的作用:
1) 繼承一些不可變的class時(shí)(比如int, str, tuple),提供一個(gè)自定義這些類的實(shí)例化過程的途徑
2) 實(shí)現(xiàn)自定義的metaclass
例子:實(shí)現(xiàn)永遠(yuǎn)返回正數(shù)
class PositiveInteger(int): #繼承類int def __new__(cls, value): return super().__new__(cls, abs(value)) #返回父類的__new__方法 i = PositiveInteger(-3) #類實(shí)例化 print(i) 3
注意點(diǎn):
關(guān)于__init__
方法:第一個(gè)參數(shù)必須是self
;無返回值
關(guān)于__new__
方法:
1) 繼承自object的新式類才有__new__
2) __new__
至少要有一個(gè)參數(shù)cls,代表要實(shí)例化的類,此參數(shù)在實(shí)例化時(shí)由Python解釋器自動(dòng)提供
3) __new__
必須要有返回值,返回實(shí)例化出來的實(shí)例(也就是__init__
的self
),可以返回父類__new__
出來的實(shí)例,或者直接是object的__new__
出來的實(shí)例
2 __del__方法
當(dāng)對(duì)象所有的引用都被刪除后觸發(fā)該方法,代碼如下:
class Testdel(): def __del__(self): print("using __del__") t = Testdel() t1 = t del t1 del t using __del__
3 __str__和__repr__
__repr__
和__str__
這兩個(gè)方法都是用于顯示的,__str__
是面向用戶的,而__repr__
面向程序員
定義__repr__
的簡單方法:定義了__str__
之后,賦值給__repr__
,如下:
__repr__ = __str__
4 屬性訪問
__getattr__(self, name)
:當(dāng)用戶試圖獲取一個(gè)不存在的屬性(name)時(shí)的行為
__getattribute__(self, name)
:當(dāng)類的屬性被訪問時(shí)的行為
__setattr__(self, name, value)
:當(dāng)一個(gè)屬性被設(shè)置時(shí)的行為
__delattr__(self, name)
:當(dāng)一個(gè)屬性被刪除時(shí)的行為
死循環(huán)陷阱:
class Rectangle: def __init__(self, width=0, height=0): self.width = width self.height = height def __setattr__(self, name, value): if name == ‘square': self.width = value self.height = value else: self.name = value def getArea(self): return self.width * self.height r = Rectangle(3,4)
實(shí)例化r = Rectangle(3, 4)
就會(huì)出現(xiàn)死循環(huán),因?yàn)樵?code>__init__里面出現(xiàn)了設(shè)置屬性值,跳到__setattr__
里面e的self.name = value
這一句,也就是繼續(xù)賦值操作self.width = width
,所以進(jìn)入死循環(huán)。解決方法:
1) else子句改為:super().__setattr__(name, value)
2) else子句改為:self.__dict__[name] = value
5 描述符:將某種特殊類型的類的實(shí)例指派給另一個(gè)類的屬性
特殊類型是指:
__get__(self, instance, owner)
:訪問屬性,返回屬性的值
__set__(self, instance, value)
:用于設(shè)置屬性,不返回任何內(nèi)容
__delete__(self, instance)
:刪除屬性,不返回任何內(nèi)容
self
:描述符類本身的實(shí)例,instance
:擁有者類的實(shí)例,owner
:擁有者,類本身
class MyDecriptor: def __get__(self, instance, owner): #理解self instance owner的含義 print(‘getting...', self, instance, owner) def __set__(self, instance, value): print(‘setting…',self, instance,value) def __delete__(self, instance): print(‘deleting…',self, instance) class Test: x = MyDecriptor() test = Test() #實(shí)例化 test.x test.x = ‘X-man' del test.x
Python是一種編程語言,內(nèi)置了許多有效的工具,Python幾乎無所不能,該語言通俗易懂、容易入門、功能強(qiáng)大,在許多領(lǐng)域中都有廣泛的應(yīng)用,例如最熱門的大數(shù)據(jù)分析,人工智能,Web開發(fā)等。
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。