Object as SuperClass in java
Sep 4, 2018 · 1 min read
-> Object as SuperClass:
Object class in java.lang package, sits at top of the class hierarchy tree. Every class is a descendant, direct or indirect of object class
-> Hashcode and Equals Method():
Collections such as HashMap and HashSet use the hashcode value of an object to determine how the object should be stored in the collection, and the hashcode is used again to help locate the object in the collection.
Hashing retrieval is a two-step process.
- Find the right bucket (using hashCode())
- Search the bucket for the right element (using equals() )
If two objects are considered equal there hashcode must also be equal,
