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(Java EE-juno-SR1)中是否有任何方法可以搜索isEmpty()仅在字符串对象上调用的所有事件?
isEmpty()
例如,
我不希望搜索返回像搜索结果中的.isEmpty()某些调用一样。ArrayList.isEmpty()我能做的最好的事情就是搜索所有出现的isEmpty().
.isEmpty()
ArrayList.isEmpty()
Ctrl Shift G - 在工作区中查找引用,只会在 Eclipse 中捕获正确的引用。
Ctrl Shift G
您可以通过“调用层次结构”找到谁在调用您的方法
右键单击方法并说“打开调用层次结构”
干杯,索拉夫