HashMap implements the Serializable interface; so it can be serialized. I have looked at the implementation of HashMap and the Entry[] table is marked as transient. Since the En
HashMap takes care of its own serialization through the use of the writeObject and readObject methods.
HashMap
writeObject
readObject