在 Eclipse 中,是否可以在项目中找到采用某种参数类型的所有方法?

2022-01-20 00:00:00 ide android java eclipse

所以这基本上是我的问题.我在参数化方法中将所有方法 ArrayLists 转换为 HashMaps,但我不想将所有 ArrayLists 转换为 HashMaps,因为有一些在本地使用.这更像是一种好奇心,但它会很有用.

So that's basically my question. I'm converting all methods ArrayLists to HashMaps in parameterized methods, but I don't want to convert all ArrayLists to HashMaps since there are a few that are used locally. This is more of a curiosity than anything, but it would be useful.

那么,在 Eclipse 中,是否可以在项目中找到所有采用某种参数类型的方法?

So, in Eclipse, is it possible to find all methods in project that take a certain parameter type?

推荐答案

Ctrl+H 或从菜单栏 Search - 搜索 ...,然后选择 Java 搜索:

Press Ctrl+H or from menu bar Search - Search ..., then choose Java Search:

然后单击限制为 - 匹配位置(选择 15 个中的 x 个):

Then click Limit To - Match locations (x of 15 selected):

这应该给你想要的.

相关文章