在我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)
如果您对插件有任何想法可以做到这一点,我会很高兴听到它:)