| HOME | FORUM | INDICE |

download StackEsempio.java

/*
    L'esempio mostra l'utilizzo della collection Stack.

    Autore: Agosto 2009, Giovanni Iacobelli - http://www.iacosoft.com
*/


import java.util.*;

class StackEsempio
{
    public static void main(String[] args)
    {
        
        Stack buf= new Stack();

        //inserisce gli elementi
        buf.push(new DatiInteger(1, "Uno"));
        buf.push(new DatiInteger(2, "Due"));
        buf.push(new DatiInteger(3, "Tre"));

        System.out.println(buf);

        System.out.println("\nEstrazione dati dallo stack:");

        while (!buf.empty())
        {
            //verranno estratti dall'ultimo al primo
            DatiInteger v= (DatiInteger)buf.pop();
            System.out.println(v);
        }
    }
}