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?