SpotBugs检查java代码:在整数上进行没有起任何实际作用的位操作(INT_VACUOUS_BIT_OPERATION)

https://spotbugs.readthedocs.io/en/latest/bugDescriptions.html#int-vacuous-bit-mask-operation-on-integer-value-int-vacuous-bit-operation

在整数上进行无用的与、异或操作,实质上没有做任何有用的工作。
例如:v & 0xffffffff

再例如:
SpotBugs检查java代码:在整数上进行没有起任何实际作用的位操作(INT_VACUOUS_BIT_OPERATION)_第1张图片

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