In Eclipse, is it possible to find all methods in project that take a certain parameter type?(在 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):
这应该给你想要的.
这篇关于在 Eclipse 中,是否可以在项目中找到采用某种参数类型的所有方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Eclipse 中,是否可以在项目中找到采用某种参数类型的所有方法?


基础教程推荐
- 从 python 访问 JVM 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- 不推荐使用 Api 注释的描述 2022-01-01
- Java Swing计时器未清除 2022-01-01
- 大摇大摆的枚举 2022-01-01
- 多个组件的复杂布局 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01