findbugs异常(3)- Comparison of String objects using == or !=
# 问题代码 if (dutyOfficerNameAccount != "" && dutyOfficerNameAccount != null) { //}# 官方解释 Comparison of String objects using == or != This code compares java.lang.String objects for reference equality using the == or != operators. Unless both strings are...
more...