What is the proper way to use a .equals method in Java?

前端 未结 2 1423
陌清茗
陌清茗 2020-12-06 17:19

I was talking with my CompSci professor and he suggested that all String .equals methods be written as:

\"Hello World\".equals(fooString);
         


        
2条回答
  •  南方客
    南方客 (楼主)
    2020-12-06 17:44

    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.

提交回复
热议问题