I have an class defining an immutable value type that I now need to serialize. The immutability comes from the final fields which are set in the constructor. I've tried serializing, and it works (surprisingly?) - but I've no idea how.

Here's an example of the class

public class MyValueType implements Serializable
{
    private final int value;

    private transient int derivedValue;

    public MyValueType(int value)
    {
        this.value = value;
        this.derivedValue = derivedValue(value);
    }

    // getters etc...
}

Given that the class doesn't have a no arg constructor, how can it be instantiated and the final field set?

(An aside - I noticed this class particularly because IDEA wasn't generating a "no serialVersionUID" inspection warning for this class, yet successfully generated warnings for other classes that I've just made serializable.)

link|improve this question

Bonus question: how is an instance of an anonymous class serialized? – ewernli May 25 '10 at 12:47
1  
@EJP - I find it's not possible to read the JLS - it has to be decoded :) – mdma May 28 '10 at 0:39
1  
But not guessed at. Any competent programmer should be able to read a language specification, and should certainly rely on it rather than guesswork. – EJP May 28 '10 at 0:59
1  
You seem to be missing the point here. Why are you asking me when you have the JLS? – EJP Jun 8 '10 at 2:45
1  
My initial comment and follow up was slightly toungue in cheek, but seems not everyone is born with a sense of humour. I mentioned that I find reading the JLS difficult when trying to find answers to specific questions like this one, and you said that any competent programmer can read the spec, so I'm asking you to do that in this case. – mdma Jun 8 '10 at 3:01
show 3 more comments
feedback

4 Answers

up vote 10 down vote accepted

Deserialization is implemented by the JVM on a level below the basic language constructs. Specifically, it does not call any constructor.

link|improve this answer
Actually, it does call the parameterless constructor. Only classes with such a constructor are serializable. – Oak May 25 '10 at 12:42
3  
@Oak. Not true. You can serialize a class without a default constructor. – Alexander Pogrebnyak May 25 '10 at 12:45
@Alexander: my bad. I've confused it with the fact that non-serializable superclasses to serializable types must have such a constructor. – Oak May 25 '10 at 12:48
1  
@Oak: right, so Michael's answer is actually slightly inaccurate (not that it matters for the purpose of this question). Deserialization does call the constructor of the last non-serializable class in the hierarchy. – bkail May 25 '10 at 13:41
feedback

Given that the class doesn't have a no arg constructor, how can it be instantiated and the final field set?

Some nasty black magic happens. There is a backdoor in the JVM that allows an object to be created without invoking any constructor. The fields of the new object are first initialized to their default values (false, 0, null, etc), and then the object deserialization code populates the fields with values from the object stream.

(Now that Java is open sourced, you can read the code that does this ... and weep!)

link|improve this answer
In fact, you don't even need nasty black magic, reflection (a.k.a. nasty gray magic ;) can be used to set final fields. It works as long as the values are set before the fields are read the first time. – gustafc May 25 '10 at 12:45
@gustafc - but black magic is needed to create the object without executing any constructors. – Stephen C May 25 '10 at 13:02
feedback

Both Michael and Stephen gave you an excellent answer, I just want to caution you about transient fields.

If default value (null for references, 0 for primitives ) is not acceptable for them after deserialization then you have to provide your version of readObject and initialize it there.

    private void readObject (
            final ObjectInputStream s
        ) throws
            ClassNotFoundException,
            IOException
    {
        s.defaultReadObject( );

        // derivedValue is still 0
        this.derivedValue = derivedValue( value );
    }
link|improve this answer
feedback

If you're serializing to / deserializing from XML, you should look at persistence delegates .

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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