Can I un-assign (clear) all fields of an instance?

Posted by Roman on Stack Overflow See other posts from Stack Overflow or by Roman
Published on 2010-04-08T15:42:16Z Indexed on 2010/04/08 16:03 UTC
Read the original article Hit count: 92

Filed under:
|
|
|
|

Is there a simple way to clear all fields of an instance from a an instance? I mean, I would like to remove all values assigned to the fields of an instance.

ADDED

From the main thread I start a window and another thread which controls state of the window (the last thread, for example, display certain panels for a certain period of time). I have a class which contains state of the window (on which stage the user is, which buttons he already clicked).

In the end, user may want to start the whole process from the beginning (it is a game). So, I decided. So, if everything is executed from the beginning, I would like to have all parameter to be clean (fresh, unassigned).

ADDED

The main thread, creates the new object which is executed in a new thread (and the old thread is finished). So, I cannot create a new object from the old thread. I just have a loop in the second thread.

© Stack Overflow or respective owner

Related posts about java

Related posts about oop