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

This is a strange one, am wondering if this is by design or a compiler bug. Am using Sun Java 6 on a PC, but also seen with Sun Java 5 on a linux box.

Suppose I have a file on disk containing a serialized class. I then add a final field to the class and declare and initialize the field in one statement:

public final int newField = 2;

If I read in an object that was serialized before this field was added, this new field is given a default value of 0, which is correct. However, the compiler replaces occurrences of the field by the constant "2". OTOH, if I instead initialize the new field inside of a constructor:

Data (int d) {
    this.oldField = d;
    this.newField = 2;
}

then the field does not get optimized away and everything works as expected.

More explicitly, here is my Main class:

import java.io.*;
public class Main {
    public static void main(String[] args) {
        try {       
            FileInputStream fis = new FileInputStream ("Data.txt");
            ObjectInputStream ois = new ObjectInputStream (fis);

            Data d = (Data)ois.readObject();
            ois.close();
            fis.close();

            d.print();
        }
        catch (Exception e) {
            e.printStackTrace();
        }
    }
}

and here is the Data class:

import java.io.*;
public class Data implements Serializable {
    private static final long serialVersionUID = 1;
    private int oldField;
    private final int newField = 2;

    Data(int d) {
        this.oldField= d;
    }

    public void print() {        {
        System.out.println(this.oldField + " " + this.newField);
    }
}

So my Data.txt file has a serialized instance of the original class with just "oldField = 1". So the expected output of running this is

1 0

but instead I get

1 2

whereas if I move the initialization into the constructor the output is correct.

Is this expected behaviour? My feeling is that the compiler should not be optimizing away fields in serialized classes, precisely for this reason. Perhaps that is asking too much. Thanks!

share|improve this question

3 Answers

up vote 4 down vote accepted

This is by design. If a variable is declared as final, has a primitive type and an initializer which is a constant expressions, then it is a "constant variable". This alters the semantics of initialization among other things. Specifically, the expression value is evaluated at compile time, and then embedded into the code.

Refer to JLS 4.12.4 for details.

When you put the initialization into the constructor, the variable is no longer a "constant variable" and normal initialization occurs.


By the way, I would have thought that a final variable having a different value than what the initializer said was a bad thing, not a good thing. To me, that would be highly unintuitive. At any rate, relying on this kind of behaviour does not strike me as good practice.

share|improve this answer
Thanks, that is very clear. So I was intending to use the added field to do version control, i.e., to check at runtime whether a deserialized class was "old" or "new", so that a change in the behaviour of the evolved class would not apply to an instance that had been serialized before this change in behaviour. Is there a better practice for that? – user976092 Oct 3 '11 at 13:28
I think it would be better to use readObject / writeObject and/or the other explicit mechanisms. Or better yet, don't use object serialization at all if you expect your classes to change. – Stephen C Oct 3 '11 at 23:17

It's not clear why you think this is a problem. The compiler is doing exactly what it should do. The class definition says that the final field's value is 2, and that is exactly what you're getting.

The underlying reason is that when the final variable's value is declared in the initializer, the compiler knows its value immediately, so it is able to substitute the actual value as a literal wherever you use the variable. When you initialized it in constructor code, it couldn't see the value so easily so it doesn't do that optimization. It is still free to do so if it can.

In the language of the JLS #4.12.4, this is a 'constant variable', and JLS #13.1 says 'References to fields that are constant variables (ยง4.12.4) are resolved at compile time to the constant value that is denoted', which is exactly what is happening here.

My feeling is that the compiler should not be optimizing away fields in serialized classes

Why should the compiler have different rules for serialized classes?

share|improve this answer
Because in the serialized case, the compiler does not know the value at compile time... – user976092 Oct 3 '11 at 17:45
@user976092 So you're asking for the compiler to treat a class that may have a serialized instance of itself without the final field differently from a class that may not. How exactly is it supposed to know? And why exactly should it defy the JLS #13.1? and why exactly should it compile a program text that says final int newField = 2 in such a way as to allow newField to have another value? This really isn't making much sense. – EJP Oct 4 '11 at 0:16
No, that's not what I was asking. I understand why my expectation was incorrect, and why. My initial confusion came from seeing in the debugger this.newField == 0 and trying to reconcile that with the output. I get it now. The final thought I was trying to express, was that if the class is Serializable, the compiler truly cannot know the field values at compile time. I'll get over it :-) – user976092 Oct 4 '11 at 0:53

The usage of final variable always provokes compiler optimization. Its doing what it supposed to do.

share|improve this answer
1  
It is not strictly true that usage of a final variable provokes compiler optimization. And besides, this case is not a compiler optimization. It is a specified difference in behaviour for the "constant variable" case. – Stephen C Oct 3 '11 at 6:47
Yes, agree that this particular reference to constant variable is showing different behavior. I was referring to former part were in compiler already knew the value of the variable. In case a variable is declared final but not initialized, this does not hold true. – Santosh Oct 3 '11 at 6:55
No. It's not 'different behaviour'. The point is that in one case it is a reference to a 'constant variable', which has one defined behavour: in the other case it isn't, so it has another behaviour. – EJP Oct 3 '11 at 6:59
I am sorry I missed the italics :). Clearer now. Thanks. – Santosh Oct 3 '11 at 7:03

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.