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 Entry[] table is the one that stores the entire contents of the Map and if it cannot be serialized, how is the Map constructed back during de-serialization
feedback
|
|
If you look at the source you will see that it does not rely on the default serialization mechanism, but manually writes out all the entries (as an alternating stream of keys and values):
This is more compact than the array, which can contain many empty entries and link chains and overhead for Map$Entry wrappers. Note that it still invokes | ||||
|
feedback
|
|
| |||
|
feedback
|
|
HashMaps don't serialize their Entry objects during serialization. Take a look at its The javadocs explain:
If you look at the | |||
|
feedback
|