|
简易收银系统
一般商场收银会用到 多种收银模式 这个时候 就需要用到策略模式
策略模式解析:策略模式是一种定义一系列算法的方法,从概念上来看,所有这些算法完成的都是相同的工作,只是实现不同,它可以以相同的方式调用所有的算法,减少了各种算法类与使用算法之间的耦合
完成如图
客户Duan调用代码 如下
- private void btn_ok_Click(object sender, EventArgs e)
- {
- double total = 0.0d;
- string type = cbx_type.SelectedItem.ToString();
- CashHelper.CashContext csuper = new CashHelper.CashContext(type);
- double totalPrice = Convert.ToDouble(txt_price.Text) * Convert.ToDouble(txt_number.Text);
- total= total+ csuper.GetResult(totalPrice);
- txt_total.Text = total.ToString();
- }
复制代码
完整代码
FormsCashSuper.zip
(50.19 KB, 下载次数: 5)
|
|