I wanted to split the constructor of my class into parts. But I have a problem...
Is it possible to initialize a final value in a method called inside constructor? It has to be initialized directly in constructor?
This...
import java.util.Scanner;
public final class A
{
private final int L;
private final int D;
private final int N;
public A()
{
Scanner scanner = new Scanner(System.in);
this.getFirstLine(scanner);
/* the rest of the constructor method */
}
private void getFirstLine(Scanner scanner)
{
this.L = scanner.nextInt();
this.D = scanner.nextInt();
this.N = scanner.nextInt();
}
}
gives me errors similar to The final field A.L cannot be assigned.
So it is treated as an assignment? Yeah?
Is there a way of splitting constructor in order to achieve what I wanted?
Thanks in advance.