I have a question that for example I have a GameStartegy class that has 53 fields and the type of all is one interface for example Strategy and one of these fields are Date and the will be initialized when we create an object,how can i create a Serializable object ?? should I serialize all fields like Date? thanks
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
As long as the class implements the Here's an introduction to serialization in java: http://www.javacoffeebreak.com/articles/serialization/index.html |
|||
|
|
|
First you need to implement serializable interface which is mark up interface once you class implements that interface then you can have Serilizable objects... |
|||
|
|
|
Okay, java.util.Date is Serializable, so that shouldn't be a problem. If you have member fields that you don't need to save, you can make them transient Transient members don't get serialized. So you can have class like this
That should work. You can also create custom serialization functions by implementing the following functions:
|
|||
|
|