屬性在運行時的動態(tài)替換,叫做猴子補?。∕onkey Patch)。
成都創(chuàng)新互聯(lián):公司2013年成立為各行業(yè)開拓出企業(yè)自己的“網(wǎng)站建設(shè)”服務(wù),為近1000家公司企業(yè)提供了專業(yè)的網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計和網(wǎng)站推廣服務(wù), 按需定制制作由設(shè)計師親自精心設(shè)計,設(shè)計的效果完全按照客戶的要求,并適當(dāng)?shù)奶岢龊侠淼慕ㄗh,擁有的視覺效果,策劃師分析客戶的同行競爭對手,根據(jù)客戶的實際情況給出合理的網(wǎng)站構(gòu)架,制作客戶同行業(yè)具有領(lǐng)先地位的。為什么叫猴子補丁
屬性的運行時替換和猴子也沒什么關(guān)系,關(guān)于猴子補丁的由來網(wǎng)上查到兩種說法:
1.這個詞原來為Guerrilla Patch,雜牌軍、游擊隊,說明這部分不是原裝的,在英文里guerilla發(fā)音和gorllia(猩猩)相似,再后來就寫了monkey(猴子)。
2.還有一種解釋是說由于這種方式將原來的代碼弄亂了(messing with it),在英文里叫monkeying about(頑皮的),所以叫做Monkey Patch。
猴子補丁的叫法有些莫名其妙,只要和“模塊運行時替換的功能”對應(yīng)就行了。
猴子補丁的用法
1、運行時動態(tài)替換模塊的方法
stackoverflow上有兩個比較熱的例子,
consider a class that has a method get_data. This method does an external lookup (on a database or web API, for example), and various other methods in the class call it. However, in a unit test, you don't want to depend on the external data source - so you dynamically replace the get_data method with a stub that returns some fixed data.
假設(shè)一個類有一個方法get_data。這個方法做一些外部查詢(如查詢數(shù)據(jù)庫或者Web API等),類里面的很多其他方法都調(diào)用了它。然而,在一個單元測試中,你不想依賴外部數(shù)據(jù)源。所以你用啞方法態(tài)替換了這個get_data方法,啞方法只返回一些測試數(shù)據(jù)。
另一個例子引用了,Zope wiki上對Monkey Patch解釋:
from SomeOtherProduct.SomeModule import SomeClass def speak(self): return "ook ook eee eee eee!" SomeClass.speak = speak
還有一個比較實用的例子,很多代碼用到 import json,后來發(fā)現(xiàn)ujson性能更高,如果覺得把每個文件的import json 改成 import ujson as json成本較高,或者說想測試一下用ujson替換json是否符合預(yù)期,只需要在入口加上:
import json import ujson def monkey_patch_json(): json.__name__ = 'ujson' json.dumps = ujson.dumps json.loads = ujson.loads monkey_patch_json()
2、運行時動態(tài)增加模塊的方法
這種場景也比較多,比如我們引用團(tuán)隊通用庫里的一個模塊,又想豐富模塊的功能,除了繼承之外也可以考慮用Monkey Patch。
個人感覺Monkey Patch帶了便利的同時也有搞亂源代碼優(yōu)雅的風(fēng)險。
以上就是Python中的猴子補丁是什么的詳細(xì)內(nèi)容,更多請關(guān)注創(chuàng)新互聯(lián)網(wǎng)站制作公司其它相關(guān)文章!