I was going through the process of serialization and what I have analysed is that the memebers that can not be serialized are transisent and static , Please advise is there any other functionality also that can not be serialized other than these two..? please advise.
Guys Please advise..!!
The are not serialized by default. That does mean they cannot be Serialized with custom serialization. Note: there are many classes in the JDK which have transient fields which are serialized a custom way.
You cannot serialize objects which do not implement Serializable and are non-
transientand non-static.Note: you can use custom serialization to serialize any object provided its
transient.