What is the best way to implement constants in Java ? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T18:04:08Z http://stackoverflow.com/feeds/question/66066 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java 11 What is the best way to implement constants in Java ? mk 2008-09-15T19:39:15Z 2009-01-28T21:14:02Z <p>I've seen examples like this: </p> <pre><code>public class MaxSeconds { public static final int MAX_SECONDS = 25; } </code></pre> <p>and supposed that I could have a Constants class to wrap constants in, declaring them static final. I know practically no Java at all and am wondering if this is the best way to create constants. </p> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/66076#66076 19 Answer by jjnguy for What is the best way to implement constants in Java ? jjnguy 2008-09-15T19:39:48Z 2008-09-15T19:57:33Z <p>That is perfectly acceptable, probably even the standard.</p> <pre><code>(public/private) static final TYPE NAME = VALUE; </code></pre> <p>where <code>TYPE</code> is the type, <code>NAME</code> is the name in all caps with underscores for spaces, and <code>VALUE</code> is the constant value;</p> <p>As a side note: Variables that are declared final and are mutable can still be changed; however, the variable can never point at a different object.</p> <p>For example:</p> <pre><code>public static final Point ORIGIN = new Point(0,0); public static void main(String[] args){ ORIGIN.x = 3; } </code></pre> <p>That is legal and <code>ORIGIN</code> would then be a point at 3, 0.</p> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/66096#66096 -1 Answer by Joel Martinez for What is the best way to implement constants in Java ? Joel Martinez 2008-09-15T19:41:23Z 2008-09-15T19:41:23Z <p>I wouldn't call the class the same (aside from casing) as the constant ... I would have at a minimum one class of "Settings", or "Values", or "Constants", where all the constants would live. If I have a large number of them, I'd group them up in logical constant classes (UserSettings, AppSettings, etc.)</p> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/66123#66123 3 Answer by Jason Cohen for What is the best way to implement constants in Java ? Jason Cohen 2008-09-15T19:44:16Z 2008-09-15T19:44:16Z <p>That's the right way to go.</p> <p>Generally constants are <em>not</em> kept in separate "Constants" classes because they're not discoverable. If the constant is relevant to the current class, keeping them there helps the next developer.</p> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/66142#66142 5 Answer by stimpy for What is the best way to implement constants in Java ? stimpy 2008-09-15T19:45:33Z 2008-09-15T19:45:33Z <p>Just avoid using an interface:</p> <pre><code>public interface MyConstants { String CONSTANT_ONE = "foo"; } public class NeddsConstant implements MyConstants { } </code></pre> <p>It is tempting, but violates encapsulation and blurs the distinction of class definitions.</p> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/66143#66143 0 Answer by Andrew Harmel-Law for What is the best way to implement constants in Java ? Andrew Harmel-Law 2008-09-15T19:45:34Z 2008-09-15T19:45:34Z <p>To take it a step further, you can place globally used constants in an interface so they can be used system wide. E.g.</p> <pre><code>public interface MyGlobalConstants { public static final int TIMEOUT_IN_SECS = 25; } </code></pre> <p>But don't then implement it. Just refer to them directly in code via the fully qualified classname.</p> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/66212#66212 1 Answer by Sébastien D. for What is the best way to implement constants in Java ? Sébastien D. 2008-09-15T19:50:34Z 2008-09-15T19:50:34Z <p>What about an enumeration?</p> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/66228#66228 25 Answer by MetroidFan2002 for What is the best way to implement constants in Java ? MetroidFan2002 2008-09-15T19:51:44Z 2008-09-15T19:51:44Z <p>I would highly advise against having a single constants class. It may seem a good idea at the time, but when developers refuse to document constants and the class grows to encompass upwards of 500 constants which are all not related to each other at all (being related to entirely different aspects of the application), this generally turns into the constants file being completely unreadable. Instead:</p> <ul> <li>If you have access to Java 5+, use enums to define your specific constants for an application area. All parts of the application area should refer to enums, not constant values, for these constants. You may declare an enum similar to how you declare a class. Enums are perhaps the most (and, arguably, only) useful feature of Java 5+.</li> <li>If you have constants that are only valid to a particular class or one of its subclasses, declare them as either protected or public and place them on the top class in the hierarchy. This way, the subclasses can access these constant values (and if other classes access them via public, the constants aren't only valid to a particular class...which means that the external classes using this constant may be too tightly coupled to the class containing the constant)</li> <li>If you have an interface with behavior defined, but returned values or argument values should be particular, it is perfectly acceptible to define constants on that interface so that other implementors will have access to them. However, avoid creating an interface just to hold constants: it can become just as bad as a class created just to hold constants.</li> </ul> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/66307#66307 7 Answer by Marcio Aguiar for What is the best way to implement constants in Java ? Marcio Aguiar 2008-09-15T19:58:22Z 2008-09-15T19:58:22Z <p>It is a <strong>BAD PRACTICE</strong> to use interfaces just to hold constants (named <em>constant interface pattern</em> by Josh Bloch). Here's Josh advices:</p> <blockquote> <p>If the constants are strongly tied to an existing class or interface, you should add them to the class or interface. For example, all of the boxed numerical primitive classes, such as Integer and Double, export MIN_VALUE and MAX_VALUE constants. If the constants are best viewed as members of an enumerated type, you should export them with an <strong>enum</strong> type. Otherwise, you should export the constants with a noninstantiable utility class.</p> </blockquote> <p>Example:</p> <pre><code>// Constant utility class package com.effectivejava.science; public class PhysicalConstants { private PhysicalConstants() { } // Prevents instantiation public static final double AVOGADROS_NUMBER = 6.02214199e23; public static final double BOLTZMANN_CONSTANT = 1.3806503e-23; public static final double ELECTRON_MASS = 9.10938188e-31; } </code></pre> <p>About the naming convetion:</p> <blockquote> <p>By convention, such fields have names consisting of capital letters, with words separated by underscores. It is critical that these fields contain either primitive values or references to immutable objects.</p> </blockquote> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/66339#66339 5 Answer by shelfoo for What is the best way to implement constants in Java ? shelfoo 2008-09-15T20:00:12Z 2009-01-28T21:14:02Z <p>In Effective Java 2nd edition, it's recommended that you use enums instead of static ints for constants.</p> <p>There's a good writeup on enums in Java here: <a href="http://java.sun.com/j2se/1.5.0/docs/guide/language/enums.html" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/guide/language/enums.html</a></p> <p>Note that at the end of that article the question posed is:</p> <p><i>So when should you use enums?</i></p> <p>With an answer of:</p> <p><i>Any time you need a fixed set of constants</i></p> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/66343#66343 1 Answer by Rob Dickerson for What is the best way to implement constants in Java ? Rob Dickerson 2008-09-15T20:00:43Z 2009-01-28T21:13:19Z <p>I agree that using an interface is not the way to go. Avoiding this pattern even has its own item (#18) in Bloch's Effective Java.</p> <p>An argument Bloch makes against the constant interface pattern is that use of constants is an implementation detail, but implementing an interface to use them exposes that implementation detail in your exported API.</p> <p>The public|private static final TYPE NAME = VALUE; pattern is a good way of declaring a constant. Personally, I think it's better to avoid making a separate class to house all of your constants, but I've never seen a reason not to do this, other than personal preference and style.</p> <p>If your constants can be well-modeled as an enumeration, consider the <a href="http://java.sun.com/j2se/1.5.0/docs/guide/language/enums.html" rel="nofollow">enum</a> structure available in 1.5 or later.</p> <p>If you're using a version earlier than 1.5, you can still pull off typesafe enumerations by using normal Java classes. (See <a href="http://www.javapractices.com/topic/TopicAction.do?Id=1#Legacy" rel="nofollow">this site</a> for more on that).</p> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/66592#66592 3 Answer by theatrus for What is the best way to implement constants in Java ? theatrus 2008-09-15T20:26:15Z 2008-09-15T20:26:15Z <p>The number one mistake you can make is creating a globally accessible class called with a generic name, like Constants. This simply gets littered with garbage and you lose all ability to figure out what portion of your system uses these constants.</p> <p>Instead, constants should go into the class which "owns" them. Do you have a constant called TIMEOUT? It should probably go into your Communications() or Connection() class. MAX_BAD_LOGINS_PER_HOUR? Goes into User(). And so on and so forth. </p> <p>The other possible use is Java .properties files when "constants" can be defined at run-time, but not easily user changeable. You can package these up in your .jars and reference them with the Class resourceLoader.</p> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/66768#66768 0 Answer by mmansoor for What is the best way to implement constants in Java ? mmansoor 2008-09-15T20:45:52Z 2008-09-15T20:45:52Z <p>For Constants, Enum is a better choice IMHO. Here is an example</p> <p>public class myClass {</p> <pre><code>public enum myEnum { Option1("String1", 2), Option2("String2", 2) ; String str; int i; myEnum(String str1, int i1) { this.str = str1 ; this.i1 = i } } </code></pre> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/67057#67057 0 Answer by Ryan Delucchi for What is the best way to implement constants in Java ? Ryan Delucchi 2008-09-15T21:17:31Z 2008-09-15T21:17:31Z <p>A Constant, of any type, can be declared by creating an immutable property that within a class (that is a member variable with the <code>final</code> modifier). Typically the <code>static</code> and <code>public</code> modifiers are also provided.</p> <pre><code>public class OfficePrinter { public static final String STATE = "Ready"; } </code></pre> <p>There are numerous applications where a constant's value indicates a selection from an n-tuple (e.g. <em>enumeration</em>) of choices. In our example, we can choose to define an Enumerated Type that will restrict the possible assigned values (i.e. improved <em>type-safety</em>):</p> <pre><code>public class OfficePrinter { public enum PrinterState { Ready, PCLoadLetter, OutOfToner, Offline }; public static final PrinterState STATE = PrinterState.Ready; } </code></pre> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/67310#67310 0 Answer by Javamann for What is the best way to implement constants in Java ? Javamann 2008-09-15T21:44:56Z 2008-09-15T21:44:56Z <p>One of the way I do it is by creating a 'Global' class with the constant values and do a static import in the classes that need access to the constant.</p> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/67564#67564 1 Answer by ab for What is the best way to implement constants in Java ? ab 2008-09-15T22:17:12Z 2008-09-15T22:17:12Z <p>A single, generic constants class is a bad idea. Constants should be grouped together with the class they're most logically related to.</p> <p>Rather than using variables of any kind (especially enums), I would suggest that you use methods. Create a method with the same name as the variable and have it return the value you assigned to the variable. Now delete the variable and replace all references to it with calls to the method you just created. If you feel that the constant is generic enough that you shouldn't have to create an instance of the class just to use it, then make the constant method a class method.</p> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/68068#68068 2 Answer by Bradley Harris for What is the best way to implement constants in Java ? Bradley Harris 2008-09-15T23:58:26Z 2009-01-28T21:12:28Z <p>A good object oriented design should not need many publicly available constants. Most constants should be encapsulated in the class that needs them to do its job. </p> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/68558#68558 0 Answer by big_peanut_horse for What is the best way to implement constants in Java ? big_peanut_horse 2008-09-16T01:30:29Z 2008-09-16T01:30:29Z <p>I prefer to use getters rather than constants. Those getters might return constant values, e.g. <code>public int getMaxConnections() {return 10;}</code>, but anything that needs the constant will go through a getter.</p> <p>One benefit is that if your program outgrows the constant--you find that it needs to be configurable--you can just change how the getter returns the constant.</p> <p>The other benefit is that in order to modify the constant you don't have to recompile everything that uses it. When you reference a static final field, the value of that constant is compiled into any bytecode that references it.</p> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/68574#68574 0 Answer by Tim Howland for What is the best way to implement constants in Java ? Tim Howland 2008-09-16T01:33:07Z 2008-09-16T01:33:07Z <p>FWIW, a timeout in seconds value should probably be a configuration setting (read in from a properties file or through injection as in Spring) and not a constant.</p> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/69187#69187 0 Answer by Kevin Day for What is the best way to implement constants in Java ? Kevin Day 2008-09-16T03:36:05Z 2008-09-16T03:36:05Z <p>Creating static final constants in a separate class can get you into trouble. The Java compiler will actually optimize this and place the actual value of the constant into any class that references it.</p> <p>If you later change the 'Constants' class and you don't do a hard re-compile on other classes that reference that class, you will wind up with a combination of old and new values being used.</p> <p>Instead of thinking of these as constants, think of them as configuration parameters and create a class to manage them. Have the values be non-final, and even consider using getters. In the future, as you determine that some of these parameters actually should be configurable by the user or administrator, it will be much easier to do.</p>