In Java, why can't I declare a final member (w/o initializing it) in the parent class and set its value in the subclass? How can I work around? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T03:17:41Zhttp://stackoverflow.com/feeds/question/663512http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/663512/in-java-why-cant-i-declare-a-final-member-w-o-initializing-it-in-the-parent-c1In Java, why can't I declare a final member (w/o initializing it) in the parent class and set its value in the subclass? How can I work around?Hanno Fietz2009-03-19T18:45:35Z2009-03-19T18:53:15Z
<p>In a Java program, I have multiple subclasses inheriting from a parent (which is abstract). I wanted to express that every child should have a member that is set once only (which I was planning to do from the constructor). My plan was to code s.th. like this:</p>
<pre><code>public abstract class Parent {
protected final String birthmark;
}
public class Child extends Parent {
public Child(String s) {
this.birthmark = s;
}
}
</code></pre>
<p>However, this seems to not please the Java gods. In the parent class, I get the message that <code>birthmark</code> "might not have been initialized", in the child class I get "The final field <code>birthmark</code> cannot be accessed".</p>
<p>So what's the Java way for this? What am I missing?</p>
http://stackoverflow.com/questions/663512/in-java-why-cant-i-declare-a-final-member-w-o-initializing-it-in-the-parent-c/663522#6635227Answer by McDowell for In Java, why can't I declare a final member (w/o initializing it) in the parent class and set its value in the subclass? How can I work around?McDowell2009-03-19T18:48:31Z2009-03-19T18:48:31Z<p>Pass it to the parent constructor:</p>
<pre><code>public abstract class Parent {
private final String birthmark;
public Parent(String s) {
birthmark = s;
}
}
public class Child extends Parent {
public Child(String s) {
super(s);
}
}
</code></pre>
http://stackoverflow.com/questions/663512/in-java-why-cant-i-declare-a-final-member-w-o-initializing-it-in-the-parent-c/663523#6635237Answer by Adam Rosenfield for In Java, why can't I declare a final member (w/o initializing it) in the parent class and set its value in the subclass? How can I work around?Adam Rosenfield2009-03-19T18:48:42Z2009-03-19T18:48:42Z<p>You can't do it because while comparing the parent class, the compiler can't be sure that the subclass will initialize it. You'll have to initialize it in the parent's constructor, and have the child call the parent's constructor:</p>
<pre><code>public abstract class Parent {
protected final String birthmark;
protected Parent(String s) {
birthmark = s;
}
}
public class Child extends Parent {
public Child(String s) {
super(s);
...
}
}
</code></pre>
http://stackoverflow.com/questions/663512/in-java-why-cant-i-declare-a-final-member-w-o-initializing-it-in-the-parent-c/663526#6635261Answer by Paul Tomblin for In Java, why can't I declare a final member (w/o initializing it) in the parent class and set its value in the subclass? How can I work around?Paul Tomblin2009-03-19T18:49:24Z2009-03-19T18:49:24Z<p>Another Java-ish way to do this is probably to have the parent class to define an abstract "getter", and have the children implement it. It's not a great way to do it in this case, but it in some cases it can be exactly what you want.</p>
http://stackoverflow.com/questions/663512/in-java-why-cant-i-declare-a-final-member-w-o-initializing-it-in-the-parent-c/663527#6635270Answer by Maurice Perry for In Java, why can't I declare a final member (w/o initializing it) in the parent class and set its value in the subclass? How can I work around?Maurice Perry2009-03-19T18:49:28Z2009-03-19T18:49:28Z<p>Yes, the final members are to be assigned in the class in which they are declared. You need to add a constructor with a String argument to Parent.</p>
http://stackoverflow.com/questions/663512/in-java-why-cant-i-declare-a-final-member-w-o-initializing-it-in-the-parent-c/663529#6635290Answer by Jorn for In Java, why can't I declare a final member (w/o initializing it) in the parent class and set its value in the subclass? How can I work around?Jorn2009-03-19T18:49:56Z2009-03-19T18:49:56Z<p>Declare a constructor in the superclass that's called by the subclass.
You must set the field in the superclass to make sure it's initialized, or the compiler can't be sure the field is initialized.</p>
http://stackoverflow.com/questions/663512/in-java-why-cant-i-declare-a-final-member-w-o-initializing-it-in-the-parent-c/663530#6635300Answer by Cody Casterline for In Java, why can't I declare a final member (w/o initializing it) in the parent class and set its value in the subclass? How can I work around?Cody Casterline2009-03-19T18:50:01Z2009-03-19T18:50:01Z<p>You probably want to have a Parent(String birthmark) constructor so that you can ensure in your Parent class that final is always initialized. Then you can call super(birthmark) from your Child() constructor. </p>
http://stackoverflow.com/questions/663512/in-java-why-cant-i-declare-a-final-member-w-o-initializing-it-in-the-parent-c/663533#6635330Answer by ng for In Java, why can't I declare a final member (w/o initializing it) in the parent class and set its value in the subclass? How can I work around?ng2009-03-19T18:50:19Z2009-03-19T18:50:19Z<p>Why not delegate initialization to a method. Then override the method in the parent class.</p>
<pre><code>public class Parent {
public final Object x = getValueOfX();
public Object getValueOfX() {
return y;
}
}
public class Child {
@Override
public Object getValueOfX() {
// whatever ...
}
}
</code></pre>
<p>This should allow custom initialization.</p>
http://stackoverflow.com/questions/663512/in-java-why-cant-i-declare-a-final-member-w-o-initializing-it-in-the-parent-c/663549#6635491Answer by TofuBeer for In Java, why can't I declare a final member (w/o initializing it) in the parent class and set its value in the subclass? How can I work around?TofuBeer2009-03-19T18:53:15Z2009-03-19T18:53:15Z<p>I would do it like this:</p>
<pre><code>public abstract class Parent
{
protected final String birthmark;
protected Parent(final String mark)
{
// only if this makes sense.
if(mark == null)
{
throw new IllegalArgumentException("mark cannot be null");
}
birthmark = mark;
}
}
public class Child
extends Parent
{
public Child(final String s)
{
super(s);
}
}
</code></pre>
<p>final means that the variable can be initialized once per instance. The compiler isn't able to make sure that every subclass will provide the assignment to birthmark so it forces the assignment to happen in the constructor of the parent class.</p>
<p>I added the checking for null just to sho wthat you also get the benefit of being able to check the arguments in one place rather than each cosntructor.</p>