I'm reviewing some code from my job from another employee and came across a class consisting of only public static final fields. What is the benefit of this, and how would it be used? My guess is that it makes it easy to retrieve info from XML tags. Any other ideas or knowledge?
closed as not a real question by Bala R, The Surrican, musiKk, user7116, John Saunders May 26 '11 at 19:26
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
It's a common Java idiom to define (sort of) constants, to avoid harcoding fixed ('magic' - probably duplicated and hard to refactor) values in code. http://programmers.stackexchange.com/questions/59642/best-practices-for-constants http://www.javapractices.com/topic/TopicAction.do?Id=2 Java enumerations vs. static constants defining global constants in java - avoiding magic numbers - best practice? |
||||
|
|
|
Its a common (albeit bad) way in Java to have a collection of constant values for one reason or another. Also, if its older Java code, it was a common way to implement enums before there was language support for them |
|||
|
|
Generally we use it to hold constants value. For example:
Also See |
|||
|
|
|
It is used for holding constants which will be required by single/multiple source files.
But to achieve this, I would rather use |
|||
|
|
enum. – pickypg May 26 '11 at 17:50