1. 程式人生 > >PyCharm使用技巧:Find Usages(查詢引用)

PyCharm使用技巧:Find Usages(查詢引用)

PyCharm的Find Usages功能可以查詢某個物件(變數、函式、或者類等)被引用的地方。

使用:

在要查詢的物件上右鍵-》Find Usages-》介面下方會列出查詢結果。 快捷鍵:Alt + F7 下面以test.py和test2.py為例,其中test2.py使用了test.py的foo函式

test.py:

a = [1, 2, 3]
b = [10, 100, 11]
c = [22, 333]
a.extend(b)


def foo():
    print(a)

test2.py:

import test

test.foo()

test.foo()

test3.py:

import test

test.foo()

在檔案test.py中,把滑鼠放到foo上面再右鍵點選Find Usages。

查詢結果如下圖所示,可以看出foo()函式被引用了3次,其中test2.py引用了2次,test3.py引用了1次: