I am trying to simply test out the initialization safety of final fields as guaranteed by the JLS. It is for a paper I'm writing. However, I am unable to get it to 'fail' based on my current code. Can someone tell me what I'm doing wrong, or if this is just something I have to run over and over again and then see a failure with some unlucky timing?

Here is my code:

public class TestClass {

final int x;
int y;
static TestClass f;

public TestClass() {
    x = 3;
    y = 4;
}

static void writer() {
    TestClass.f = new TestClass();
}

static void reader() {
    if (TestClass.f != null) {
        int i = TestClass.f.x; // guaranteed to see 3
        int j = TestClass.f.y; // could see 0

        System.out.println("i = " + i);
        System.out.println("j = " + j);
    }
}

}

and my threads are calling it like this:

public class TestClient {

public static void main(String[] args) {

    for (int i = 0; i < 10000; i++) {
        Thread writer = new Thread(new Runnable() {
            @Override
            public void run() {
                TestClass.writer();
            }
        });

        writer.start();
    }

    for (int i = 0; i < 10000; i++) {
        Thread reader = new Thread(new Runnable() {
            @Override
            public void run() {
                TestClass.reader();
            }
        });

        reader.start();
    }
}

}

I have run this scenario many, many times. My current loops are spawning 10,000 threads, but I've done with this 1000, 100000, and even a million. Still no failure. I always see 3 and 4 for both values. How can I get this to fail?

link|improve this question

80% accept rate
Good question, I've been trying to get similar examples to fail due to unsafe initialization as well, but with no luck. It would be great if someone provided an example which actually fails. – axel22 Jan 26 at 14:42
feedback

1 Answer

From Java 5.0, you are guarenteed that all threads will see the final state set by the constructor.

If you want to see this fail, you could try an older JVM like 1.3.

I wouldn't print out every test, I would only print out the failures. You could get one failure in a million but miss it. But if you only print failures, they should be easy to spot.

A simpler way to see this fail is to add to the writer.

f.y = 5;

and test for

int y = TestClass.f.y; // could see 0, 4 or 5
if (y != 5)
    System.out.println("y = " + y);
link|improve this answer
I am guaranteed to see the state of final fields set by the constructor, but not non-final fields right? So, in my example, I should always see 3 for x, but I'm not guaranteed to see 4 for y. But for some reason, I ALWAYS see 4 for y, also. – sma Feb 21 '11 at 14:37
1  
Java 5.0+ guarentees you will always see y = 4 in another thread unless you start the thread in the constructor. – Peter Lawrey Feb 21 '11 at 14:44
Am I just reading this wrong then? Or is this just not updated for the semantics that Java 5.0 introduced? java.sun.com/docs/books/jls/third_edition/html/memory.html#17.5 – sma Feb 21 '11 at 14:59
Reading the specification, I believe you are right that it appears to only guarentee final fields, however individual implementation are free to guarentee non-final fields as well. AFAIK Oracle's Java 5.0+ JVM ensures that all fields are visible to all threads as soon as the constructor completes. – Peter Lawrey Feb 21 '11 at 16:29
1  
OK, I am incorrect in my statement above. Turns out the reference to f is set AFTER the constructor completes. I was able to get this to fail by unsafely publishing a reference in the constructor such as: f = this. In this instance, I saw failures on both variables, which is consistent with the semantics on unsafe publishing. However, I am still unable to get the safe publishing guarantee to fail on variable y. – sma Feb 21 '11 at 19:22
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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