当前位置:
首页 > Python基础教程 >
-
C#教程之设计模式之☞简单工厂模式
通过多态制作一个简单的计算器
Operation类:
1 public class Operation 2 { 3 private double _numberA = 0; 4 private double _numberB = 0; 5 public double NumberA 6 { 7 get 8 { 9 return _numberA; 10 } 11 12 set 13 { 14 _numberA = value; 15 } 16 } 17 public double NumberB 18 { 19 get 20 { 21 return _numberB; 22 } 23 24 set 25 { 26 _numberB = value; 27 } 28 } 29 public virtual double GetResult() 30 { 31 double result = 0; 32 return result; 33 } 34 }
简单工厂类:
1 public class OperationFactory 2 { 3 public static Operation createOperate(string operate) 4 { 5 Operation oper = null; 6 switch (operate) 7 { 8 case "+": 9 oper = new OperationAdd(); 10 break; 11 case "-": 12 oper = new OperationSub(); 13 break; 14 case "*": 15 oper = new OperationMul(); 16 break; 17 case "/": 18 oper = new OperationDiv(); 19 break; 20 } 21 return oper; 22 } 23 }
加法类,继承Operation:
1 class OperationAdd:Operation 2 { 3 public override double GetResult() 4 { 5 double result = 0; 6 result = NumberA + NumberB; 7 return result; 8 } 9 }
减法类,继承Operation:
1 class OperationSub:Operation 2 { 3 public override double GetResult() 4 { 5 double result = 0; 6 result = NumberA - NumberB; 7 return result; 8 } 9 }
乘法类,继承Operation:
1 class OperationMul : Operation 2 { 3 public override double GetResult() 4 { 5 double result = 0; 6 result = NumberA * NumberB; 7 return result; 8 } 9 }
除法类,继承Operation:
1 class OperationDiv : Operation 2 { 3 public override double GetResult() 4 { 5 double result = 0; 6 if (NumberB==0) 7 { 8 throw new Exception("除数不能为0。"); 9 } 10 result = NumberA / NumberB; 11 return result; 12 } 13 }
调用:
1 private void button1_Click(object sender, EventArgs e) 2 { 3 Operation oper = OperationFactory.createOperate(textBox4.Text); 4 oper.NumberA =Convert.ToDouble(textBox1.Text); 5 oper.NumberB = Convert.ToDouble(textBox2.Text); 6 textBox3.Text = oper.GetResult().ToString(); 7 }
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式