Contenido de certificación
Buscar
Social
Ofertas laborales ES
« Más ejemplos sobre constructores | Main | ¿Error en la utilidad References de Eclipse utilizando implementaciones e interfaces? »
jueves
abr092015

Ejemplos sobre constructores

¿Compilarían los siguientes ejemplos?

Ejemplo 1
package constructores;

public class Pruebas1 {

	public Pruebas1(){
		
	};
	
	private Pruebas1(){
		
	};
	
	
}
Ejemplo 2
package constructores;

public class Pruebas2 {

	private Pruebas2(){
		
	};
	
	
}

Reader Comments

There are no comments for this journal entry. To create a new comment, use the form below.

PostPost a New Comment

Enter your information below to add a new comment.

My response is on my own website »
Author Email (optional):
Author URL (optional):
Post:
 
Some HTML allowed: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong>