您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關python通過實例方法名字調用方法的案例的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
案例:
某項目中,我們的代碼使用的2個不同庫中的圖形類:
Circle,Triangle
這兩個類中都有一個獲取面積的方法接口,但是接口的名字不一樣
需求:
統一這些接口,不關心具體的接口,只要我調用統一的接口,對應的面積就會計算出來
如何解決這個問題?
定義一個統一的接口函數,通過反射:getattr進行接口調用
#!/usr/bin/python3 from math import pi class Circle(object): def __init__(self, radius): self.radius = radius def getArea(self): return round(pow(self.radius, 2) * pi, 2) class Rectangle(object): def __init__(self, width, height): self.width = width self.height = height def get_area(self): return self.width * self.height # 定義統一接口 def func_area(obj): # 獲取接口的字符串 for get_func in ['get_area', 'getArea']: # 通過反射進行取方法 func = getattr(obj, get_func, None) if func: return func() if __name__ == '__main__': c1 = Circle(5.0) r1 = Rectangle(4.0, 5.0) # 通過map高階函數,返回一個可迭代對象 erea = map(func_area, [c1, r1]) print(list(erea))
通過標準庫operator中methodcaller方法進行調用
#!/usr/bin/python3 from math import pi from operator import methodcaller class Circle(object): def __init__(self, radius): self.radius = radius def getArea(self): return round(pow(self.radius, 2) * pi, 2) class Rectangle(object): def __init__(self, width, height): self.width = width self.height = height def get_area(self): return self.width * self.height if __name__ == '__main__': c1 = Circle(5.0) r1 = Rectangle(4.0, 5.0) # 第一個參數是函數字符串名字,后面是函數要求傳入的參數,執行括號中傳入對象 erea_c1 = methodcaller('getArea')(c1) erea_r1 = methodcaller('get_area')(r1) print(erea_c1, erea_r1)
感謝各位的閱讀!關于“python通過實例方法名字調用方法的案例”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。