Initialize final variable before constructor in Java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T21:07:52Z http://stackoverflow.com/feeds/question/677595 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/677595/initialize-final-variable-before-constructor-in-java 1 Initialize final variable before constructor in Java Tobiask 2009-03-24T14:16:15Z 2009-03-24T15:04:36Z <p>Is there a solution to use a final variable in a Java constructor? The problem, if I init. a final var. like:</p> <pre><code>private final String name = "a name"; </code></pre> <p>then I cannot use it in the constructor, while java first runs the constructor an then the fields... Is there a solution to get in contact with the final var. in the constructor?</p> http://stackoverflow.com/questions/677595/initialize-final-variable-before-constructor-in-java/677605#677605 4 Answer by Hank Gay for Initialize final variable before constructor in Java Hank Gay 2009-03-24T14:18:07Z 2009-03-24T14:26:59Z <p>Do the initialization in the constructor, e.g.,</p> <pre><code>private final String name; private YourObj() { name = "a name"; } </code></pre> <p>Of course, if you actually know the value at variable declaration time, it makes more sense to make it a constant, e.g.,</p> <pre><code>private static final String NAME = "a name"; </code></pre> http://stackoverflow.com/questions/677595/initialize-final-variable-before-constructor-in-java/677607#677607 2 Answer by Outlaw Programmer for Initialize final variable before constructor in Java Outlaw Programmer 2009-03-24T14:18:33Z 2009-03-24T14:18:33Z <p>In this case, you can mark the field as 'static' also.</p> http://stackoverflow.com/questions/677595/initialize-final-variable-before-constructor-in-java/677611#677611 1 Answer by Adam Jaskiewicz for Initialize final variable before constructor in Java Adam Jaskiewicz 2009-03-24T14:18:52Z 2009-03-24T14:18:52Z <p>In that case, you might as well make it static, too. And Java convention is to name such constants in ALL_CAPS.</p> http://stackoverflow.com/questions/677595/initialize-final-variable-before-constructor-in-java/677615#677615 11 Answer by Johannes Weiß for Initialize final variable before constructor in Java Johannes Weiß 2009-03-24T14:20:14Z 2009-03-24T14:20:14Z <p>I do not really understand your question. That</p> <pre><code>public class Test3 { private final String test = "test123"; public Test3() { System.out.println("Test = "+test); } public static void main(String[] args) { Test3 t = new Test3(); } } </code></pre> <p>executes as follows:</p> <pre><code>$ javac Test3.java &amp;&amp; java Test3 Test = test123 </code></pre> http://stackoverflow.com/questions/677595/initialize-final-variable-before-constructor-in-java/677617#677617 1 Answer by daanish.rumani for Initialize final variable before constructor in Java daanish.rumani 2009-03-24T14:21:06Z 2009-03-24T14:21:06Z <pre><code>private static final String name = getName(); </code></pre> <p>where <em>getName()</em> is a static function that gets you the name.</p> http://stackoverflow.com/questions/677595/initialize-final-variable-before-constructor-in-java/677619#677619 2 Answer by sfossen for Initialize final variable before constructor in Java sfossen 2009-03-24T14:21:56Z 2009-03-24T15:04:36Z <p>Marking it static, will allow you to use it in the constructor, but since you made it final, it can not be changed.</p> <pre><code>private static final String name = "a_name"; </code></pre> <p>is is possible to use a static init block as well.</p> <pre><code>private static final String name; static { name = "a_name"; } </code></pre> <p>If you are trying to modify the value in the constructor, then you can't assign a default value or you have to make it not final.</p> <pre><code>private String name = "a_name"; Foo( String name ) { this.name = name; } </code></pre> <p>or</p> <pre><code>private final String name; Foo( String name ) { if( s == null ) this.name = "a_name"; else this.name = name; } </code></pre> http://stackoverflow.com/questions/677595/initialize-final-variable-before-constructor-in-java/677743#677743 0 Answer by soulmerge for Initialize final variable before constructor in Java soulmerge 2009-03-24T14:51:40Z 2009-03-24T14:51:40Z <blockquote> <p>I cannot use it in the constructor, while java first runs the constructor an then the fields...</p> </blockquote> <p>This is not correct, fields are evaluated first, otherwise you couldn't access any default values of members in your constructors, since they would not be initialized. This <em>does</em> work:</p> <pre><code>public class A { protected int member = 1; public A() { System.out.println(member); } } </code></pre> <p>The keyword <em>final</em> merely marks the member constant, it is treated as any other member otherwise.</p> <p>EDIT: Are you trying to <em>set</em> the value in the constructor? That wouldn't work, since the member is immutable if defined as final.</p> http://stackoverflow.com/questions/677595/initialize-final-variable-before-constructor-in-java/677759#677759 0 Answer by Joachim Sauer for Initialize final variable before constructor in Java Joachim Sauer 2009-03-24T14:55:02Z 2009-03-24T14:55:02Z <p>Another possiblity is to initialize the field in an instance initializer blocK:</p> <pre><code>public class Foo { final String bar; { System.out.println("initializing bar"); bar = "created at " + System.currentTimeMillis(); } public Foo() { System.out.println("in constructor. bar=" + bar); } public static void main(String[] args) { new Foo(); } } </code></pre>