All example I found which talk about visibility is example with primitive type. What I want to know is: if a object which new in heap, when one thread call its method to change its state, without locking or synchronize, other thread will see this change? Imagine a Java.Colletion object, one thread call its add() method
Someone says for object in heap still has visibility problem, but the JLS said: 17.4.1 Shared Variables Memory that can be shared between threads is called shared memory or heap memory.
and http://www.artima.com/insidejvm/ed2/jvm2.html said: A thread's Java stack stores the state of Java (not native) method invocations for the thread. The state of a Java method invocation includes its local variables, the parameters with which it was invoked, its return value (if any), and intermediate calculations.
So I think, JVM will not copy a object which in heap to CPU cache. If this is correct, object in heap won't have visibility problem, because thread just reference to the object in heap.
BTW Assume there is concurrent problem when one thread call .add(). In normal process, the change must guard with a lock, so this problem is not a problem. But I just want to know :)
Visibilitysection here – Prince John Wesley Jul 19 '11 at 4:23