Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Eclipse 中,我可以对变量进行参考搜索,这使我可以查看相关变量已被访问/修改的每个位置。有没有办法让我快速查看相关变量的修改位置?(代码库很大......)
举个例子,
static public int test; public static void main(String[] args) { test = 4; if (test > 5) doNothing(); }
我只想让搜索显示 line test = 4;,而不是 if 测试。
test = 4;
您可以对字段执行此操作。例如,选择“测试”字段,按 Ctrl-H,然后按 Java 搜索,选择字段和写入访问单选按钮并将搜索范围缩小到工作区或特定工作集中的源。