本文主要為大家詳細介紹了python如何透過實例方法名字呼叫方法,具有一定的參考價值,有興趣的小夥伴們可以參考一下,希望能幫助到大家。
#案例:
某專案中,我們的程式碼所使用的2個不同資料庫中的圖形類別:
,
這兩個類別中都有一個獲取面積的方法接口,但是接口的名字不一樣需求:
的接口,只要我呼叫統一的接口,對應的面積就會計算出來如何解決這個問題?
定義一個統一的介面函數,透過反射: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透過實例方法名字調用的詳細內容。更多資訊請關注PHP中文網其他相關文章!