a Admi Blog23 9 éve
937
Még több ilyen
por ejemplo
Subtema
InstrumentoMusical instrumento = new Guitarra(); instrumento.play(); System.out.prinln(instrumento.tipoInstrumento()); InstrumentoMusical i2 = new InstrumentoMusical(); //error.No se puede instanciar
La sintaxis es:
interface nombre_interface extends nombre_interface , . . . { tipo_retorno nombre_metodo ( lista_argumentos ) ; . . . }
Por ejemplo:
public interface Meses { int ENERO = 1 , FEBRERO = 2 . . . ; String [] NOMBRES_MESES = { " " , "Enero" , "Febrero" , . . . }; }
Esto puede usarse simplemente: System.out.println(Meses.NOMBRES_MESES[ENERO]);Esto puede usarse simplemente: System.out.println(Meses.NOMBRES_MESES[ENERO]);
Una interface se declara
nterface nombre_interface { tipo_retorno nombre_metodo ( lista_argumentos ) ; . . . }