Estructuras_de_Datos/src/cl/cromer/estructuras/code/pila/peek

4 lines
77 B
Plaintext

public int peek() {
// Devolver el valor encima
return this.pila[encima];
}