public ColeccionMultiple(Pila p, Cola c) { this.pila = p; this.cola = c; }
public ColeccionMultiple() { pila = new Pila(); cola = new Cola(); }