Okay, so as far as I know, I understand these things about a final variable.
- It should be assigned only once
- All the
finalvariables should be initialized before the constructor completes
Now using the above, I do not understand how the below doesn't work:
public class FinalTest implements AnotherClass {
private final Something something;
private final otherthing;
@Override
public void setStuff(Something something) {
this.something = something;
this.otherthing = new SomeClass(something);
}
public FinalTest(Something something) {
setStuff(something);
}
}
Here, before the constructor completes the final variables are being set. So why does the compiler complain against it?
otherthing? – maerics Nov 20 '12 at 17:04