Package y1.pos

Examples of y1.pos.Cart.change()


   
    Cart c = new Cart();
   
    c.add(i1);     // võtame siit ühe leiva...
    c.add(i2, 2);     // ja kaks piima
    c.change(i1, 3);     // tahan ikka 3 leiba
    c.remove(i2);     // ei, piima ma vist ei taha
    c.add(i2, 1);     // siiski, võtaks ühe piima
    c.add(i2, 1);     // võtame ühe piima veel
   
    System.out.println("\nOstukorvi sisu: " + c.toString());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.