Contenido de certificación
Buscar
Social
Ofertas laborales ES
« Lambda Quick Start | Main | Duda sobre ArrayList y Vector. »
sábado
feb072015

Definición de métodos

Que tal compañer@s. ¿Sabéis indicar si el siguiente código compila, y si no es el caso, por qué motivo? ¿Qué lineas se podrían eliminar para que compilase?

package scjp;

public class DefinicionDeMetodos {

	private void sayHello() {
		
	}
	
	private void sayHello(int a) {
		
	}
	
	public void sayHello() {
		
	}

	public void sayHello(int a) {
		
	}
	
	private void sayHello() throws Exception{
		
	}
	
	private void sayHello(int a) throws Exception{
		
	}

}

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>