Contenido de certificación
Buscar
Social
Ofertas laborales ES

Entries in constructores (2)

jueves
abr092015

Más ejemplos sobre constructores

¿Compilaría y ejecutaría el siguiente código? Si no compila, ¿por qué razón? Si ejecuta, ¿cuál sería la salida?

Clase constructores1.Pruebas
01.package constructores1;
02. 
03. 
04.public class Pruebas {
05. 
06.    private String s = "publico";
07.     
08.    protected Pruebas() {
09.        this.s = "protected"
10.    }
11. 
12.    /* (non-Javadoc)
13.     * @see java.lang.Object#toString()
14.     */
15.    @Override
16.    public String toString() {
17.        return "Pruebas [s=" + s + "]";
18.    }
19.     
20. 
21.}
Clase constructores2.Pruebas
01.package constructores2;
02. 
03. 
04.public class Pruebas {
05. 
06.    private String s = "publico";
07.     
08.    protected Pruebas() {
09.        this.s = "protected"
10.    }
11. 
12.    /* (non-Javadoc)
13.     * @see java.lang.Object#toString()
14.     */
15.    @Override
16.    public String toString() {
17.        return "Pruebas4 [s=" + s + "]";
18.    }
19.     
20. 
21.}
Clase Principal
01.package constructores;
02. 
03.public class Principal {
04. 
05.    public static void main(String args[]){
06.        constructores1.Pruebas pruebas1 = new constructores1.Pruebas();
07.        System.out.println(pruebas1.toString());
08.         
09.        constructores1.Pruebas pruebas2 = new constructores2.Pruebas();
10.        System.out.println(pruebas2.toString());
11.         
12.    }
13.}
jueves
abr092015

Ejemplos sobre constructores

¿Compilarían los siguientes ejemplos?

Ejemplo 1
01.package constructores;
02. 
03.public class Pruebas1 {
04. 
05.    public Pruebas1(){
06.         
07.    };
08.     
09.    private Pruebas1(){
10.         
11.    };
12.     
13.     
14.}
Ejemplo 2
01.package constructores;
02. 
03.public class Pruebas2 {
04. 
05.    private Pruebas2(){
06.         
07.    };
08.     
09.     
10.}