1
vote
4answers
222 views
Java Double Checked Locking
Hi All,
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 …
7
votes
10answers
527 views
Double checked locking Article
Hi all,
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:
…
3
votes
3answers
296 views
What’s wrong with this fix for double checked locking?
So I've seen a lot of articles now claiming that on C++ double checked locking, commonly used to prevent multiple threads from trying to initialize a lazily created singleton, is broken. Normal double …
4
votes
4answers
248 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 …
5
votes
5answers
421 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 …
0
votes
3answers
150 views
Does “Double Checked Locking” work in coldfusion
I have used a version of double checked locking in my CF app (before I knew what double checked locking was)
Essentially I check for the exsistance of an object. If it is not present I lock (usually …
