Interface PileI
- All Known Implementing Classes:
- Pile, PileMVC
- public abstract interface PileI
Gestion de la pile d'Object du TP3.
TP 6 Java
- See Also:
Pile
empiler
public void empiler(java.lang.Object o)
throws PilePleineException
depiler
public java.lang.Object depiler()
throws PileVideException
sommet
public java.lang.Object sommet()
throws PileVideException
estVide
public boolean estVide()
estPleine
public boolean estPleine()
toString
public java.lang.String toString()
- Overrides:
- toString in class java.lang.Object