Tagged Questions
4
votes
4answers
350 views
Resetting a field lazy-loaded with the double-check idiom
Consider the "double-check idiom for lazy initialization of instance fields":
// Item 71 in Effective Java copied from this interview with Bloch.
private volatile FieldType field;
FieldType ...