政务网站的建设快速网站搭建
https://spotbugs.readthedocs.io/en/latest/bugDescriptions.html#bc-instanceof-will-always-return-true-bc-vacuous-instanceof
使用instanceof判断的时候,总是返回true,除非被检测的结果是null。遇到这种告警,可能是写代码的人理解错误、或者其它逻辑错误。如果确实想检查null,那么最好用更加清楚的null测试,而不是用instanceof。
例如: