jenkins checkstyle:local variable hides a field

源代码:

1
2
3
4
5
6
7
8
//应用上下文
private  static  ApplicationContext applicationContext;
public  static  void  setApplicationContextValue(ApplicationContext applicationContext){
     SpringContextUtil.applicationContext = applicationContext;
}
public  static  ApplicationContext getApplicationContext(){
     return  applicationContext;
}

Jenkins上的checkstyle提示setApplicationContextValue()方法“hides a field”

该错误提示一般出现在变量的setter方法上,原因是:

It means you've got two different variables with the same name - myBoard. One of them is a field in your class. Another one is a local variable, that is, one that you've declared inside a method.

It's a bad idea to have two variables with the same name. It can make your code very confusing and difficult to maintain.

意思就是两个变量设置了相同的名称,一个是类变量,一个是方法内局部变量,解决方法:

1
2
3
public  static  void  setApplicationContextValue(ApplicationContext applicationContext1){
     SpringContextUtil.applicationContext = applicationContext1;
}

将方法内形参名称改一下,与类变量区分开,比如applicationContext1



转载于:https://www.cnblogs.com/xyhero/p/78733692ed9f7e63eaeb4183ed2e09ba.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值