Enums are considered best way for singletons and one of reasons for this is that it implicitly inherits Serializable..
But how enums prevents de-serialization problem of singletons?
|
Enums are considered best way for singletons and one of reasons for this is that it implicitly inherits Serializable.. But how enums prevents de-serialization problem of singletons? |
|||||||||
|
|
The serialization mechanism handles them in a special, specific way. But traditional singletons can be deserialized fine by defining a |
|||
|
|
|
Serialization as an argument for using enum for singleton is nonsense. If the enum singleton is stateful, the state is lost during serialization/deserialization. If the singleton is stateless, who cares about its identity? |
|||||
|