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 中有什么快速的方法吗?
我使用过PMD,一种代码静态分析工具,可以作为 Eclipse 插件工作。它会标记魔术数字,因此您不必自己寻找它们。
我不时使用外部化向导。这将主要帮助您处理字符串。只需选择编译单元(java 文件),然后在 Source 菜单中选择 Externalize。
对于我没有找到的数字,也没有向导或插件,您必须在上下文菜单的重构子菜单中选择“提取常量”(右键单击)。