0

I have singleton in Java and I have realized, that I could make its fields static and it would work same way as regular instance fields.

Would there be a performance / optimization difference? If so, what would turned out better? Is there a preferred way to implement singleton fields? (again, I am talking fields, not methods)

asked Apr 19, 2014 at 9:52
4

2 Answers 2

1

Keep in mind that static does not mean unique in the entire application. It is just unique for the classloader. If you are working with multiple classloaders in an application server for example there will be multiple values for the same field.

Instead of the static approach you should take a look into dependency injection which would give you what you need without the problems of singletons and static attributes.

answered May 20, 2014 at 7:51
0

Yes, there could be a performance difference. If you were, for example, to write a class for a Logger, and in the entire runtime of the application you never logged anything, then you wouldn't have needed to initialize the logger. If you wrote this class as static, then you would initialize it at the beginning of the program regardless of whether you use it. If you were to create it as a singleton, you could perform lazy initialization, which solves this issue.

In terms of the "Preferred Way," from what I've heard, it is preferred to implement it as a Singleton or similar if your object has state, and static if otherwise. This is to improve testability, because testing a static object with state is a pain in the butt, and it isn't reliable. But that is for a different question.

In your case, with fields, the answer is definitely to go with a singleton unless you have strong reason to do otherwise.

answered Apr 20, 2014 at 5:02

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.