您好,登錄后才能下訂單哦!
使用Python的內置方法dir,可以范圍一個模塊中定義的名字的列表。
官方解釋是:
Docstring: dir([object]) -> list of strings If called without an argument, return the names in the current scope. Else, return an alphabetized list of names comprising (some of) the attributes of the given object, and of attributes reachable from it. If the object supplies a method named __dir__, it will be used; otherwise the default dir() logic is used and returns: for a module object: the module's attributes. for a class object: its attributes, and recursively the attributes of its bases. for any other object: its attributes, its class's attributes, and recursively the attributes of its class's base classes.
通過dir方法,我們可以在一個類的內部,獲取當前類的名字滿足某些特征的所有方法。
下面是一個例子:
class A(object): def A_X_1(self): pass def A_X_2(self): pass def A_X_3(self): pass def get_A_X_methods(self): return filter(lambda x: x.startswith('A_X') and callable(getattr(self,x)), dir(self))
執行:
print A().get_A_X_methods()
輸出結果為:
> ['A_X_1', 'A_X_2', 'A_X_3']
以上這篇Python實現使用dir獲取類的方法列表就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。