我看到了这个:
Pattern #2: one-time safe publication
The visibility failures that
are possible in the absence of synchronization can get even trickier
to reason about when writing to object references instead of primitive
values. In the absence of synchronization, it is possible to see an
up-to-date value for an object reference that was written by another
thread and still see stale values for that object's state. (This
hazard is the root of the problem with the infamous
double-checked-locking idiom, where an object reference is read
without synchronization, and the risk is that you could see an
up-to-date reference but still observe a partially constructed object
through that reference.)*来自易失性
我很困惑:
发布于 2016-03-15 04:17:45
1)原语值不是整数、布尔、浮点等对象,只需记住这些对象的等价性,如整数、布尔等。
2)线程可能会看到更新的对象引用,但该对象可能没有被完全初始化。例如,当这个线程获得对象的新更新引用时,如果构造函数尚未完成,就可能发生这种情况.这可能很复杂,但可能会发生在一些JVM实现中。
https://stackoverflow.com/questions/36002210
复制相似问题