show/hide this revision's text 2 edited tags; edited title

initialize Initialize final variable before constructor in javaJava

show/hide this revision's text 1

initialize final variable before constructor in java

Is there a solution to use a final variable in a Java constructor? The problem, if I init. a final var. like:

private final String name = "a name";

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?