Python运算符重载用法实例分析
本文实例讲述了Python运算符重载用法。分享给大家供大家参考。具体如下:
在Python语言中提供了类似于C++的运算符重在功能:
一下为Python运算符重在调用的方法如下:
Method Overloads Call for
__init__ 构造函数 X=Class()
__del__ 析构函数 对象销毁
__add__ + X+Y,X+=Y
__or__ | X|Y,X|=Y
__repr__ 打印转换 print X,repr(X)
__str__ 打印转换 print X,str(X)
__call__ 调用函数 X()
__getattr_ 限制 X.undefine
__setattr__ 取值 X.any=value
__getitem__ 索引 X[key],
__len__ 长度 len(X)
__cmp__ 比较 X==Y,X
__radd__ Right-Side + +X
__iadd__ += X+=Y
__iter__ 迭代 For In
1. 减法重载
class Number: def __init__(self, start): self.data = start def __sub__(self, other): #minus method return Number(self.data - other) number = Number(20) y = number – 10 # invoke __sub__ method class Number: def __init__(self, start): self.data = start def __sub__(self, other): #minus method return Number(self.data - other) number = Number(20) y = number – 10 # invoke __sub__ method
2. 迭代重载
class indexer: def __getitem__(self, index): #iter override return index ** 2 X = indexer() X[2] for i in range(5): print X[i] class indexer: def __getitem__(self, index): #iter override return index ** 2 X = indexer() X[2] for i in range(5): print X[i]
3. 索引重载
class stepper: def __getitem__(self, i): return self.data[i] X = stepper() X.data = 'Spam' X[1] #call __getitem__ for item in X: #call __getitem__ print item class stepper: def __getitem__(self, i): return self.data[i] X = stepper() X.data = 'Spam' X[1] #call __getitem__ for item in X: #call __getitem__ print item
4. getAttr/setAttr重载
class empty: def __getattr__(self,attrname): if attrname == 'age': return 40 else: raise AttributeError,attrname X = empty() print X.age #call__getattr__ class accesscontrol: def __setattr__(self, attr, value): if attr == 'age': # Self.attrname = value loops! self.__dict__[attr] = value else: print attr raise AttributeError, attr + 'not allowed' X = accesscontrol() X.age = 40 #call __setattr__ X.name = 'wang' #raise exception class empty: def __getattr__(self,attrname): if attrname == 'age': return 40 else: raise AttributeError,attrname X = empty() print X.age #call__getattr__ class accesscontrol: def __setattr__(self, attr, value): if attr == 'age': # Self.attrname = value loops! self.__dict__[attr] = value else: print attr raise AttributeError, attr + 'not allowed' X = accesscontrol() X.age = 40 #call __setattr__ X.name = 'wang' #raise exception
5. 打印重载
class adder: def __init__(self, value=0): self.data = value def __add__(self, other): self.data += other class addrepr(adder): def __repr__(self): return 'addrepr(%s)' % self.data x = addrepr(2) #run __init__ x + 1 #run __add__ print x #run __repr__ class adder: def __init__(self, value=0): self.data = value def __add__(self, other): self.data += other class addrepr(adder): def __repr__(self): return 'addrepr(%s)' % self.data x = addrepr(2) #run __init__ x + 1 #run __add__ print x #run __repr__
6. Call调用函数重载
class Prod: def __init__(self, value): self.value = value def __call__(self, other): return self.value * other p = Prod(2) #call __init__ print p(1) #call __call__ print p(2) class Prod: def __init__(self, value): self.value = value def __call__(self, other): return self.value * other p = Prod(2) #call __init__ print p(1) #call __call__ print p(2)
7. 析构函数重载
class Life: def __init__(self, name='name'): print 'Hello', name self.name = name def __del__(self): print 'Goodby', self.name brain = Life('Brain') #call __init__ brain = 'loretta' # call __del__
希望本文所述对大家的Python程序设计有所帮助。

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

PHP主要是過程式編程,但也支持面向對象編程(OOP);Python支持多種範式,包括OOP、函數式和過程式編程。 PHP適合web開發,Python適用於多種應用,如數據分析和機器學習。

PHP適合網頁開發和快速原型開發,Python適用於數據科學和機器學習。 1.PHP用於動態網頁開發,語法簡單,適合快速開發。 2.Python語法簡潔,適用於多領域,庫生態系統強大。

PHP起源於1994年,由RasmusLerdorf開發,最初用於跟踪網站訪問者,逐漸演變為服務器端腳本語言,廣泛應用於網頁開發。 Python由GuidovanRossum於1980年代末開發,1991年首次發布,強調代碼可讀性和簡潔性,適用於科學計算、數據分析等領域。

在 Sublime Text 中運行 Python 代碼,需先安裝 Python 插件,再創建 .py 文件並編寫代碼,最後按 Ctrl B 運行代碼,輸出會在控制台中顯示。

Python更適合初學者,學習曲線平緩,語法簡潔;JavaScript適合前端開發,學習曲線較陡,語法靈活。 1.Python語法直觀,適用於數據科學和後端開發。 2.JavaScript靈活,廣泛用於前端和服務器端編程。

Golang在性能和可擴展性方面優於Python。 1)Golang的編譯型特性和高效並發模型使其在高並發場景下表現出色。 2)Python作為解釋型語言,執行速度較慢,但通過工具如Cython可優化性能。

在 Visual Studio Code(VSCode)中編寫代碼簡單易行,只需安裝 VSCode、創建項目、選擇語言、創建文件、編寫代碼、保存並運行即可。 VSCode 的優點包括跨平台、免費開源、強大功能、擴展豐富,以及輕量快速。

在 Notepad 中運行 Python 代碼需要安裝 Python 可執行文件和 NppExec 插件。安裝 Python 並為其添加 PATH 後,在 NppExec 插件中配置命令為“python”、參數為“{CURRENT_DIRECTORY}{FILE_NAME}”,即可在 Notepad 中通過快捷鍵“F6”運行 Python 代碼。
