Initialize final variable before constructor in Java - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T21:07:52Zhttp://stackoverflow.com/feeds/question/677595http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/677595/initialize-final-variable-before-constructor-in-java1Initialize final variable before constructor in JavaTobiask2009-03-24T14:16:15Z2009-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#6776054Answer by Hank Gay for Initialize final variable before constructor in JavaHank Gay2009-03-24T14:18:07Z2009-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#6776072Answer by Outlaw Programmer for Initialize final variable before constructor in JavaOutlaw Programmer2009-03-24T14:18:33Z2009-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#6776111Answer by Adam Jaskiewicz for Initialize final variable before constructor in JavaAdam Jaskiewicz2009-03-24T14:18:52Z2009-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#67761511Answer by Johannes Weiß for Initialize final variable before constructor in JavaJohannes Weiß2009-03-24T14:20:14Z2009-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 && java Test3
Test = test123
</code></pre>
http://stackoverflow.com/questions/677595/initialize-final-variable-before-constructor-in-java/677617#6776171Answer by daanish.rumani for Initialize final variable before constructor in Javadaanish.rumani2009-03-24T14:21:06Z2009-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#6776192Answer by sfossen for Initialize final variable before constructor in Javasfossen2009-03-24T14:21:56Z2009-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#6777430Answer by soulmerge for Initialize final variable before constructor in Javasoulmerge2009-03-24T14:51:40Z2009-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#6777590Answer by Joachim Sauer for Initialize final variable before constructor in JavaJoachim Sauer2009-03-24T14:55:02Z2009-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>