-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[java] SingletonClassReturningNewInstance false positive with double assignment #932
Comments
@alixwar You're right - that's a false positive. public final class Foo {
private static volatile Foo myFoo;
public static Foo getInstance() {
if (myFoo == null) {
synchronized (Foo .class) {
if (myFoo == null) {
instance = new Foo();
}
}
}
return myFoo;
}
} But since the singleton you are using, is static (there is only one Foo instance), there is an even simpler way: public final class Foo {
private Foo() {}
private static class FooSingletonHelper {
private static final Foo INSTANCE = new Foo();
}
public static Foo getInstance() {
return FooSingletonHelper.INSTANCE;
}
} See also Java Singleton Design Pattern Best Practices with Examples |
@adangel Thanks for the pointers! One detail: the Bill Pugh Singleton Implementation that you recommend triggers another rule violation:
|
I encountered the same situation, when using a static inner class singleton. |
@alixwar @liu78778 long story short: the solution is to change the visibility of the constructor from Now, having said that, I'd strongly recommend you revise wether you actually need the
The extra indirection introduced by this method has 2 negative effects:
I personally never adopt this rule outside of an Android project myself. |
@jsotuyod Ah, I get it, thank you very much for your replay |
Affects PMD Version:
5.4.2
Rule:
SingletonClassReturningNewInstance
Description:
The rule incorrectly indicates that the code sample always returns a new instance:
Code Sample demonstrating the issue:
Running PMD through: Gradle (SonarQube)
The text was updated successfully, but these errors were encountered: