Take the 2-minute tour ×
Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.

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)

share|improve this question
    
keep them per instance, for reasons discussed several times before here, for example in Make methods that do not depend on instance fields, static? and in Which is a better practice - helper methods as instance or static? –  gnat Apr 19 at 9:58
1  
@gnat thanks for answer, But I found that both your links refer to use of static methods. And I was asking about static fields... –  Lukáš Rutar Apr 19 at 10:00
    
sure. I think reasoning is essentially the same –  gnat Apr 19 at 21:00
add comment

1 Answer

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.

share|improve this answer
add comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.