0

0

【经典示例分享】— 商城购物车设计(VS+Access)附源码

php中文网

php中文网

发布时间:2016-06-07 15:38:16

|

1600人浏览过

|

来源于php中文网

原创

弹指一挥间,从事开发工作两年多了,工作记录文件夹不知不觉好几G了。今天分享下之前项目中用到的一个购物车示例,虽然用的技术比较老(拖放控件DataGview),我觉得里面包含了很多可以细细咀嚼的 面向对象思想 ,尤其是商品和购物车各个对象的从属关系。购

弹指一挥间,从事开发工作两年多了,工作记录文件夹不知不觉好几g了。今天分享下之前项目中用到的一个购物车示例,虽然用的技术比较老(拖放控件datagview),我觉得里面包含了很多可以细细咀嚼的面向对象思想,尤其是商品和购物车各个对象的从属关系。购物车老生常谈的东西,希望能起到抛砖引玉的效果。下面就简单介绍下吧!(via:女孩礼物网)

此款短小精悍的购物车主要有三大功能:1.折扣方案调整 2.商品列表 3.购物车

【经典示例分享】— 商城购物车设计(VS+Access)附源码

  1. 折扣方案调整

    【经典示例分享】— 商城购物车设计(VS+Access)附源码

  2. 商品列表

    【经典示例分享】— 商城购物车设计(VS+Access)附源码

  3. 购物车

    【经典示例分享】— 商城购物车设计(VS+Access)附源码

  4. 购物车核心思想代码如下

    【经典示例分享】— 商城购物车设计(VS+Access)附源码【经典示例分享】— 商城购物车设计(VS+Access)附源码Product.cs

     1 using System;
     2 using System.Collections.Generic;
     3 
     4 [Serializable]
     5 public class Product {
     6 
     7     int id;
     8 
     9     public int Id {
    10         get { return id; }
    11         set { id = value; }
    12     }
    13 
    14     string name;
    15 
    16     public string Name {
    17         get { return name; }
    18         set { name = value; }
    19     }
    20 
    21     decimal price;
    22 
    23     public decimal Price {
    24         get { return price; }
    25         set { price = value; }
    26     }
    27 
    28     string unit;
    29 
    30     public string Unit {
    31         get { return unit; }
    32         set { unit = value; }
    33     }
    34 
    35     public Product(int id, string name, decimal price, string unit) {
    36         this.id = id;
    37         this.name = name;
    38         this.price = price;
    39         this.unit = unit;
    40     }
    41 }

    【经典示例分享】— 商城购物车设计(VS+Access)附源码【经典示例分享】— 商城购物车设计(VS+Access)附源码ShopCartItem.cs

     1 using System;
     2 using System.Collections.Generic;
     3 using System.Linq;
     4 using System.Web;
     5 
     6 [Serializable]
     7 public class ShopCartItem {
     8 
     9     private Product product;
    10     private int count;
    11 
    12     public Product Product {
    13         get { return product; }
    14         set { product = value; }
    15     }
    16     public int Count {
    17         get { return count; }
    18         set { count = value; }
    19     }
    20 
    21     /// 
    22     /// 单项总折后价。
    23     /// 
    24     public decimal Price {
    25         get {
    26             decimal price = (decimal)0;
    27             List discountsUsing = (List)HttpContext.Current.Application["DiscountsUsing"];
    28             price = this.TotalPrice;
    29             foreach (IDiscountable discount in discountsUsing) {
    30                 price = price * (decimal)discount.GetDiscount(this.product.Price, this.count);
    31             }
    32             return price;
    33         }
    34     }
    35 
    36     /// 
    37     /// 单项总原价
    38     /// 
    39     public decimal TotalPrice {
    40         get{
    41             return this.product.Price * this.count;
    42         }
    43     }
    44 
    45     public ShopCartItem(Product product, int count) {
    46         this.product = product;
    47         this.count = count;
    48     }
    49 }

    【经典示例分享】— 商城购物车设计(VS+Access)附源码【经典示例分享】— 商城购物车设计(VS+Access)附源码ShopCartSet.cs

     1 using System;
     2 using System.Collections.Generic;
     3 using System.Linq;
     4 using System.Web;
     5 
     6 [Serializable]
     7 public class ShopCartSet : IEnumerable {
     8 
     9     private Dictionary<int, ShopCartItem> items;
    10 
    11     public ShopCartSet() {
    12         this.items = new Dictionary<int, ShopCartItem>();
    13     }
    14 
    15     /// 
    16     /// 各项总原价
    17     /// 
    18     public decimal TotalPrice {
    19         get {
    20             decimal price = (decimal)0;
    21             foreach (ShopCartItem item in this) {
    22                 price = price + item.TotalPrice;
    23             }
    24             return price;
    25         }
    26     }
    27 
    28     /// 
    29     /// 各项总折后价
    30     /// 
    31     public decimal Price {
    32         get {
    33             decimal price = (decimal)0;
    34             foreach (ShopCartItem item in this) {
    35                 price = price + item.Price;
    36             }
    37             return price;
    38         }
    39     }
    40 
    41     public ShopCartItem this[int id] {
    42         get {
    43             return this.items[id];
    44         }
    45         set {
    46             this.items[id] = value;
    47         }
    48     }
    49 
    50     public void Add(Product product, int count) {
    51         this.Add(new ShopCartItem(product, count));
    52     }
    53 
    54     public void Add(ShopCartItem item) {
    55         if (!this.items.ContainsKey(item.Product.Id)) {
    56             this.items.Add(item.Product.Id, item);
    57         }
    58         else {
    59             this.items[item.Product.Id].Count++;
    60         }
    61     }
    62 
    63     public void Remove(int key) {
    64         this.items.Remove(key);
    65     }
    66 
    67     public void Remove(Product product) {
    68         this.items.Remove(product.Id);
    69     }
    70 
    71     public void Remove(ShopCartItem shopCartItem) {
    72         this.items.Remove(shopCartItem.Product.Id);
    73     }
    74 
    75     #region 接口实现
    76     public IEnumerator GetEnumerator() {
    77         return this.items.Values.GetEnumerator();
    78     }
    79 
    80     System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() {
    81         return this.items.Values.GetEnumerator();
    82     }
    83     #endregion
    84 }

     

     

    【经典示例分享】— 商城购物车设计(VS+Access)附源码

 源码下载

热门AI工具

更多
DeepSeek
DeepSeek

幻方量化公司旗下的开源大模型平台

豆包大模型
豆包大模型

字节跳动自主研发的一系列大型语言模型

通义千问
通义千问

阿里巴巴推出的全能AI助手

腾讯元宝
腾讯元宝

腾讯混元平台推出的AI助手

文心一言
文心一言

文心一言是百度开发的AI聊天机器人,通过对话可以生成各种形式的内容。

讯飞写作
讯飞写作

基于讯飞星火大模型的AI写作工具,可以快速生成新闻稿件、品宣文案、工作总结、心得体会等各种文文稿

即梦AI
即梦AI

一站式AI创作平台,免费AI图片和视频生成。

ChatGPT
ChatGPT

最最强大的AI聊天机器人程序,ChatGPT不单是聊天机器人,还能进行撰写邮件、视频脚本、文案、翻译、代码等任务。

相关专题

更多
Golang处理数据库错误教程合集
Golang处理数据库错误教程合集

本专题整合了Golang数据库错误处理方法、技巧、管理策略相关内容,阅读专题下面的文章了解更多详细内容。

132

2026.02.06

java多线程方法汇总
java多线程方法汇总

本专题整合了java多线程面试题、实现函数、执行并发相关内容,阅读专题下面的文章了解更多详细内容。

52

2026.02.06

1688阿里巴巴货源平台入口与批发采购指南
1688阿里巴巴货源平台入口与批发采购指南

本专题整理了1688阿里巴巴批发进货平台的最新入口地址与在线采购指南,帮助用户快速找到官方网站入口,了解如何进行批发采购、货源选择以及厂家直销等功能,提升采购效率与平台使用体验。

748

2026.02.06

快手网页版入口与电脑端使用指南 快手官方短视频观看入口
快手网页版入口与电脑端使用指南 快手官方短视频观看入口

本专题汇总了快手网页版的最新入口地址和电脑版使用方法,详细提供快手官网直接访问链接、网页端操作教程,以及如何无需下载安装直接观看短视频的方式,帮助用户轻松浏览和观看快手短视频内容。

442

2026.02.06

C# 多线程与异步编程
C# 多线程与异步编程

本专题深入讲解 C# 中多线程与异步编程的核心概念与实战技巧,包括线程池管理、Task 类的使用、async/await 异步编程模式、并发控制与线程同步、死锁与竞态条件的解决方案。通过实际项目,帮助开发者掌握 如何在 C# 中构建高并发、低延迟的异步系统,提升应用性能和响应速度。

48

2026.02.06

Python 微服务架构与 FastAPI 框架
Python 微服务架构与 FastAPI 框架

本专题系统讲解 Python 微服务架构设计与 FastAPI 框架应用,涵盖 FastAPI 的快速开发、路由与依赖注入、数据模型验证、API 文档自动生成、OAuth2 与 JWT 身份验证、异步支持、部署与扩展等。通过实际案例,帮助学习者掌握 使用 FastAPI 构建高效、可扩展的微服务应用,提高服务响应速度与系统可维护性。

51

2026.02.06

JavaScript 异步编程与事件驱动架构
JavaScript 异步编程与事件驱动架构

本专题深入讲解 JavaScript 异步编程与事件驱动架构,涵盖 Promise、async/await、事件循环机制、回调函数、任务队列与微任务队列、以及如何设计高效的异步应用架构。通过多个实际示例,帮助开发者掌握 如何处理复杂异步操作,并利用事件驱动设计模式构建高效、响应式应用。

37

2026.02.06

java连接字符串方法汇总
java连接字符串方法汇总

本专题整合了java连接字符串教程合集,阅读专题下面的文章了解更多详细操作。

91

2026.02.05

java中fail含义
java中fail含义

本专题整合了java中fail的含义、作用相关内容,阅读专题下面的文章了解更多详细内容。

38

2026.02.05

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
PostgreSQL 教程
PostgreSQL 教程

共48课时 | 8.8万人学习

Excel 教程
Excel 教程

共162课时 | 16.4万人学习

关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号