The first way guarantees NullPointerException
is never thrown, while the second one may risk getting NullPointerException
if the fooString
happens to be null
.
However, in the end, it all boils down to the requirement. If the requirement specifies that the null
case should not happen at all, or should be treated differently, then writing in the 2nd way (fooString.equals()
) helps you detect the implementation flaw. If you can treat null
as just another case, then the 1st way is fine.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…