Example and summary of the shopping cart for JSP training

Source: Internet
Author: User

Main contents:


L Complete other basic functions of shopping cart;


l generate orders;


L Summary


1, other features of the shopping cart


to the shopping Cart item quantity modification and the item deletion function are two outside two basic functions. The implementation process is similar to adding a project, where only the reference code is given:


1.1 Model part


FileName: Cartmanager.java (modified on the basis of the previous lecture, the red part is the added content)


package JavaBean;


 


import java.util.ArrayList;


import java.util.Iterator;


 


public class Cartmanager


{


//Express Shopping cart


private ArrayList cart;


 


Public void Setcart (ArrayList cart)


   {


This.cart = cart;


   }


public ArrayList getcart ()


   {


return cart;


   }


   


//Added items & quantity


public ArrayList addToCart (goods g,int quantity)


   {


if (cart==null) {


//materialized Shopping Cart object


cart=new ArrayList ();


 


//Add to Cart


item = new Item (g,quantity);


Cart.add (item);


      }


Else


      {


//convert array


Object items[] = Cart.toarray ();


 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.