av Admi Blog23 för 10 årar sedan
1119
Mer av detta
av Allison Tencio Monge
av HUGO ARMANDO HERNANDEZ GONZALEZ
av OSCAR ALONZO BEDREÑANA LLANOS
av Alex M.Esquivel
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 ) ; . . . }