1. 程式人生 > 程式設計 >python3 反射的四種基本方法解析

python3 反射的四種基本方法解析

這篇文章主要介紹了python3 反射的四種基本方法解析,文中通過示例程式碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

class Person(object):  
  def __init__(self):
    pass
  def info(self):
    print('我是person類中的info方法')

1.getattr()方法

這個方法是根據字串去某個模組中尋找方法

instantiation = reflect.Person()#先例項化
f = getattr(instantiation,'info')#使用getattr函式去尋找字串的同名方法
f()#呼叫方法
輸出結果:我是person類中的info方法

2.hasattr()方法

這個方法是根據字串去判斷某個模組中該方法是否存在

instantiation = reflect.Person()#先例項化
f = hasattr(instantiation,'info')
print(f)
輸出結果:True

3.setattr()方法

這個方法是根據字串去某個模組中設定方法

instantiation = reflect.Person()
f = setattr(instantiation,'exit','this is a exit method')
f2 = hasattr(instantiation,'exit')
print(f2)
輸出結果就是True

4.delattr()方法

這個方法是根據字串去某個模組中刪除方法

instantiation = reflect.Person()#例項化
f = delattr(instantiation,'exit')
f = hasattr(instantiation,'exit')
print(f)
輸出結果就是False

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。