To call on another constructor within the same class, you use the name of the class and pass in the appropriate constructor arguments code example
Example: java call another constructor
public class Foo {
private int x;
public Foo() {
this(1);
}
public Foo(int x) {
this.x = x;
}
}