Link to home
Start Free TrialLog in
Avatar of Eindoofus
Eindoofus

asked on

Having trouble understand how static constructors work.

Hi, I'm seeking an explanation of how constructors work in the following code. I believe that the static constructor would only ever be called once at the beginning of the program but if that's case then what is the point of "protected ShoppingCart( )". The other thing I find strange is "public static readonly ShoppingCart Instance", does that mean that you access the static object through the Instance data member?
using System.Collections.Generic;  
using System.Web;  
  
/** 
 * The ShoppingCart class 
 * 
 * Holds the items that are in the cart and provides methods for their manipulation 
 */  
public class ShoppingCart {  
    #region Properties  
  
    public List<CartItem> Items { get; private set; }  
 
    #endregion  
 
    #region Singleton Implementation  
  
    // Readonly properties can only be set in initialization or in a constructor  
    public static readonly ShoppingCart Instance;  
  
    // The static constructor is called as soon as the class is loaded into memory  
    static ShoppingCart() {  
        // If the cart is not in the session, create one and put it there  
        // Otherwise, get it from the session  
        if (HttpContext.Current.Session["ASPNETShoppingCart"] == null) {  
            Instance = new ShoppingCart();  
            Instance.Items = new List<CartItem>();  
            HttpContext.Current.Session["ASPNETShoppingCart"] = Instance;  
        } else {  
            Instance = (ShoppingCart)HttpContext.Current.Session["ASPNETShoppingCart"];  
        }  
    }  
  
    // A protected constructor ensures that an object can't be created from outside  
    protected ShoppingCart() { }  
 
    #endregion  
 
    #region Item Modification Methods  
    /** 
     * AddItem() - Adds an item to the shopping 
     */  
    public void AddItem(int productId) {  
        // Create a new item to add to the cart  
        CartItem newItem = new CartItem(productId);  
  
        // If this item already exists in our list of items, increase the quantity  
        // Otherwise, add the new item to the list  
        if (Items.Contains(newItem)) {  
            foreach (CartItem item in Items) {  
                if (item.Equals(newItem)) {  
                    item.Quantity++;  
                    return;  
                }  
            }  
        } else {  
            newItem.Quantity = 1;  
            Items.Add(newItem);  
        }  
    }  
  
    /** 
     * SetItemQuantity() - Changes the quantity of an item in the cart 
     */  
    public void SetItemQuantity(int productId, int quantity) {  
        // If we are setting the quantity to 0, remove the item entirely  
        if (quantity == 0) {  
            RemoveItem(productId);  
            return;  
        }  
  
        // Find the item and update the quantity  
        CartItem updatedItem = new CartItem(productId);  
  
        foreach (CartItem item in Items) {  
            if (item.Equals(updatedItem)) {  
                item.Quantity = quantity;  
                return;  
            }  
        }  
    }  
  
    /** 
     * RemoveItem() - Removes an item from the shopping cart 
     */  
    public void RemoveItem(int productId) {  
        CartItem removedItem = new CartItem(productId);  
        Items.Remove(removedItem);  
    }  
    #endregion  
 
    #region Reporting Methods  
    /** 
     * GetSubTotal() - returns the total price of all of the items 
     *                 before tax, shipping, etc. 
     */  
    public decimal GetSubTotal() {  
        decimal subTotal = 0;  
        foreach (CartItem item in Items)  
            subTotal += item.TotalPrice;  
  
        return subTotal;  
    }  
    #endregion  
}

Open in new window

Avatar of Dale Burrell
Dale Burrell
Flag of New Zealand image

Well all your questions are actually answered in the comments.

Its a singleton pattern, which means that within an application space only a single instance of this class will exist. http://en.wikipedia.org/wiki/Singleton_pattern (google for more).

As the comment says a protected constructor means you can't create an instance of the class outside the class, thus enforcing this instance as the only instance.

You last assumption is indeed correct, given you can't create an instance of the class you need to provide a method to access the single instance and that's done by exposing it as a property e.g.:

ShoppingCart.Instance.Method()/Property.
ASKER CERTIFIED SOLUTION
Avatar of kaufmed
kaufmed
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Eindoofus
Eindoofus

ASKER

I thought I was just misunderstanding how "protected" is used in this case. It's good to hear that most singletons would use "private" like I expected.