What are all the benefits of using static variables and methods in Java?
|
|
closed as not constructive by casperOne♦ Jan 12 at 15:58
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Benefits of static variables:
Benefits of static methods:
|
|||||
|
|
There is an ongoing debate about the usage of static. When you make a variable or method static, they are not longer subject of inheritance, which makes them less flexible (e.g. problems with unit tests). That said static methods are useful if they don't need an instance. A typical example are the methods of So methods and variables should be never made static just to find a place for them. The are in conflict with OO-principles (especially with inheritance), tend to be inflexible and hard to refactor and to test. The usage of static is fine for real, immmutable constants (however often Enums are the better choice for this), "service objects" or totally object-independet methods. They might be a solution when factories are needed (however, consider dependency injection or Service Provider Interfaces instead). Try to avoid other usages. |
|||||||
|