SpotBugs代码检查:instanceof总是返回true(BC_VACUOUS_INSTANCEOF)

https://spotbugs.readthedocs.io/en/latest/bugDescriptions.html#bc-instanceof-will-always-return-true-bc-vacuous-instanceof

使用instanceof判断的时候,总是返回true,除非被检测的结果是null。遇到这种告警,可能是写代码的人理解错误、或者其它逻辑错误。如果确实想检查null,那么最好用更加清楚的null测试,而不是用instanceof。

例如:
SpotBugs代码检查:instanceof总是返回true(BC_VACUOUS_INSTANCEOF)_第1张图片

你可能感兴趣的:(java,SpotBugs)