Nuestro grupo de trabajo ha estado horas buscando la resolución a tus interrogantes, te ofrecemos la soluciones por esto deseamos serte de mucha ayuda.
Ejemplo 1: java llama a otro constructor
publicclassFooprivateint x;publicFoo()this(1);publicFoo(int x)this.x = x;
Ejemplo 2: cómo llamar a un constructor desde el otro constructor
With in the same classif we want tocall one constructor
from other we use this()method. Based on the
number of parameters we pass appropriate this() method is called.
Restrictionsfor 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 tocall constructor
from the base class
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)