Answers for "how to call one constructor from the other constructor"

3

java call another constructor

public class Foo {
    private int x;

    public Foo() {
        this(1);
    }

    public Foo(int x) {
        this.x = x;
    }
}
Posted by: Guest on April-29-2020
0

how to call one constructor from the other constructor

With in the same class if we want to call one constructor 
from other we use this() method. Based on the
number of parameters we pass appropriate this() method is called.
Restrictions for using this method :
1) this must be the first statement in the constructor
2)we cannot use two this() methods in the constructor

From base class: by using super() keyword to call constructor 
from the base class
Posted by: Guest on November-30-2020

Code answers related to "how to call one constructor from the other constructor"

Browse Popular Code Answers by Language