vote up 1 vote down star
1

When we serialize objects, static members are not serialized, but if we need to do so, is there any way out?

flag

22% accept rate
10  
Stop using static members for data that should be serialized ? – krosenvold Jun 17 at 16:05
4  
Addendum: stop using static members to hold mutable state. – Juliet Jun 17 at 16:09
+1, if you serialize, don't use static members – marcgg Jun 17 at 16:17
1  
Shared and mutable are NOT mutually exclusive. It doesn't make sense to serialize static constants (because they are unmutable), but it sometimes makes sense to serialize static variables (because they should be synchronized with the rest of the state at deserialization). – Vladimir Dyuzhev Jun 17 at 16:37
Vladimir, no it never makes sense to serialise static fields. – Tom Hawtin - tackline Jun 17 at 17:35
show 1 more comment

5 Answers

vote up 0 vote down

Folks, static doesn't mean IMMUTABLE. For instance, I may want to serialize the whole state of the computation (yes, including static fields -- counters, etc) to resume later, after JVM and/or host computer restarted.

The right answer to that, as already said, is to use Externalizable, not Serializable, interface. Then you have a complete control on what and how you externalize.

link|flag
If the state of the computation isn't embedded in the object you are serializing then you shouldn't be storing it as part of serialization of that object. – DJClayworth Jun 17 at 16:57
2  
Mutable static generally means broken. – Tom Hawtin - tackline Jun 17 at 17:36
1  
Think again. How about multithreaded genetic algorithms, for instance? Shared (static) storage is used to keep the registry of evaluated variants. Make it a singleton? Possible, but it has own drawbacks. – Vladimir Dyuzhev Jun 17 at 18:31
Yes. Make it a singleton. Serialize the singleton. Or, better, get rid of shared static storage, store it in an explicit context object. – Thilo Jun 18 at 11:08
... And then another bunch of purist will complain that Singleton is anti-pattern I should get rid of it too. As for "explicit context object", how do different threads access it? Via static methods? How's it better? – Vladimir Dyuzhev Jun 18 at 15:05
show 1 more comment
vote up 0 vote down

Good answers and comments--don't do it. But how?

Chances are you would be best off creating an object to hold all your "Statics". That object should probably have any static methods from your class as well.

Every instance of your class can hold this other class--or if you really have to you can make it a singleton that any member can access.

After you do this refactor, you will find that it should have been done this way all along. You may even find that some of your previous design constraints that were bothering you at a subconsicionce level have vanished.

You'll probably find that this solution also solves other Serialization problems you hadn't even noticed yet.

link|flag
vote up 2 vote down

You can control serialization by implementing:

private void writeObject(ObjectOutputStream out) throws IOException;

private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException;

There's a full description of serialization http://java.sun.com/developer/technicalArticles/Programming/serialization/.

As other answers have said, it doesn't really make sense to serialize statics as it's the object not the class you're serializing and needing to do so smells like you've got other issues with your code to me.

link|flag
You can control serialisation, but that there is nowhere sensible to put static data because it doesn't make any sense in the context. – Tom Hawtin - tackline Jun 17 at 17:38
Since we don't know the context, we can't say whether it makes sense or not. For example, after using the default serialization, it might make sense to add the static member to the stream. At deserialization, one can set the static member if it is null, otherwise discard the serialized object. – sylvarking Jun 17 at 18:08
Tom, you're abusing "proof by repetition", don't you? ;) – Vladimir Dyuzhev Jun 17 at 18:38
is there any wayout to serialize static members by serializing Class Object fr my class. – sahil garg Jun 18 at 5:16
vote up 1 vote down

Static members belong to the class, not to the individual objects.

You should reconsider your data structure.

link|flag
vote up 3 vote down

The first question is why you need to serialize the static members?

Static members are associated with the class, not the instances, so it does not make sense to include them when serializing an instance.

The first solution is to make those members not static. Or, if those members are the same in the original class and the target class (same class, but possibly different runtime environments), don't serialize them at all.

I have a few thoughts on how one could send across static members, but I first need to see the use case, as in all cases that means updating the target class, and I haven't found a good reason to do so.

link|flag
suppose i want to count number of instance of a class like Car. and i am not using database .so in that case after application shutdown i need to store this information with other information. – sahil garg Jun 18 at 5:11
1  
Do you need to store that number directly? If you update the number as you deserialize each Car (by overriding readObject) it will correctly reflect the numbr of cars in the serialization. – Kathy Van Stone Jun 18 at 12:27

Your Answer

Get an OpenID
or

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