小编Ben*_*Ben的帖子

Eclipse如何重构变量名?

在我15年的Java项目中,标准Java约定不受尊重,变量名的第一个字母通常大写.

我想将我的项目重构为小写的变量名首字母,特别是在方法签名中:

public void creerProfil(String CodeProfil, Profil ProfilACreer) throws Exception {
...
}
Run Code Online (Sandbox Code Playgroud)

应该 :

public void creerProfil(String codeProfil, Profil profilACreer) throws Exception {
...
}
Run Code Online (Sandbox Code Playgroud)

如果您对插件有任何想法可以做到这一点,我会很高兴听到它:)

java eclipse plugins refactoring

8
推荐指数
3
解决办法
2万
查看次数

标签 统计

eclipse ×1

java ×1

plugins ×1

refactoring ×1