Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When we develop a class in java, the decision of whether you should make the class serializable or not is usually simple. If the class represents a model object that may be transferred across the n/w, it should be serializable.
Is this reasoning correct?
If so, what is the logic behind some of native Java API classes being serializable while others are not?
From this list of native classes that implement Serilizable, it appears that there is more than one reason to implement serializable.
http://download.oracle.com/javase/6/docs/api/java/io/class-use/Serializable.html

Any clarifications would be appreciated.

share|improve this question

1 Answer

up vote 1 down vote accepted

The book Effective Java (2nd Edition) by Joshua Bloch which is freely available online has an entire section at the end (starting from Chapter 11) about making things serializable. In particular, pay attention to Item 74 ("implement Serializable judiciously"), which gives a few good reasons not to make something Serializable until you absolutely need to.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.