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.Pruebas01.
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.
}
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.
}
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.
}