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

From what I understand, the object state is just stored (values for fields, etc.), however, the execution context is anyways going to be lost.

What's the point of this? What bad can happen if so?

Note* this was taken from Effective Java By Joshua Bloch

share|improve this question
What have JLS got to do with this? – Tom Hawtin - tackline Apr 26 '10 at 8:47

1 Answer

The execution context of a Thread consists of

  • the Java stack,
  • the snapshot of the hardware registers taken when the thread is suspended, and
  • other state such as the thread's presence in scheduler queues, and so on.

Since none of this information can be saved by serialization, the serialized Thread is useless.

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.