Tagged Questions
11
votes
11answers
906 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
870 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 ...