What does equals(Object obj) do?

后端 未结 7 817
天涯浪人
天涯浪人 2020-12-02 21:23

I´ve often found an equals method in different places. What does it actually do? Is it important that we have to have this in every class?

   public boolean          


        
7条回答
  •  醉梦人生
    2020-12-02 22:10

    One more thing, maps use the equals method to decide if an Object is present as a key. https://docs.oracle.com/javase/8/docs/api/java/util/Map.html

提交回复
热议问题