Tagged Questions
11
votes
11answers
907 views
Double checked locking Article
I was reading this article about "Double-Checked locking" and out of the main topic of the article I was wondering why at some point of the article the author uses the next Idiom:
Listing 7. ...
6
votes
5answers
2k views
Java Double Checked Locking
I happened upon an article recently discussing the double checked locking pattern in Java and it's pitfalls and now I'm wondering if a variant of that pattern that I've been using for years now is ...
5
votes
4answers
872 views
Is this broken double checked locking?
Checkstyle reports this code as "The double-checked locking idiom is broken", but I don't think that my code actually is affected by the problems with double-checked locking.
The code is supposed to ...
4
votes
4answers
347 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 ...
2
votes
3answers
84 views
Is this code Double Checked Locking safe?
I am looking at some code in our app that I think may be encountering a case of "Double-checked locking". I have written some sample code that is similar to what we do.
Can anyone see how this can be ...