博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
简单工厂设计模式计算器
阅读量:6283 次
发布时间:2019-06-22

本文共 2757 字,大约阅读时间需要 9 分钟。

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 简单工厂设计模式计算器{    class Program    {        static void Main(string[] args)        {            //虚方法、抽象类、接口            //面向对象计算器 案例            while (true)            {                Console.WriteLine("请输入第一个数字");                double n1 = Convert.ToDouble(Console.ReadLine());                Console.WriteLine("请输入第二个数字");                double n2 = Convert.ToDouble(Console.ReadLine());                Console.WriteLine("请输入运算符");                string opera = Console.ReadLine();                CalFather cal = GetCal(opera, n1, n2);//通过opera操作符参数判断生成不同的子类赋值给父类 并返回                double res = cal.GetResult();//调用的父类抽象方法其实是被子类的override重写后的方法                Console.WriteLine(res);                Console.ReadKey();            }                   }        public static CalFather GetCal(string opear, double n1, double n2)        {            CalFather cal = null;            switch (opear)            {                case "+": cal = new Add(n1, n2);                    break;                case "-": cal = new Sub(n1, n2);                    break;                case "*": cal = new Cheng(n1, n2);                    break;                case "/": cal = new Chu(n1, n2);                    break;            }            return cal;        }    }    public abstract class CalFather    {        public double NumberOne        {            get;            set;        }        public double NumberTwo        {            get;            set;        }        public CalFather(double n1, double n2)        {            this.NumberOne = n1;            this.NumberTwo = n2;        }        public abstract double GetResult();    }    public class Add : CalFather    {        public Add(double n1, double n2)            : base(n1, n2)        {        }        public override double GetResult()        {            return this.NumberOne + this.NumberTwo;        }    }    public class Sub : CalFather    {        public Sub(double n1, double n2)            : base(n1, n2)        {        }        public override double GetResult()        {            return this.NumberOne - this.NumberTwo;        }    }    public class Cheng : CalFather    {        public Cheng(double n1, double n2)            : base(n1, n2)        {        }        public override double GetResult()        {            return this.NumberOne * this.NumberTwo;        }    }    public class Chu : CalFather    {        public Chu(double n1, double n2)            : base(n1, n2)        {        }        public override double GetResult()        {            return this.NumberOne / this.NumberTwo;        }    }}

 

转载于:https://www.cnblogs.com/blacop/p/5986278.html

你可能感兴趣的文章
数据存储
查看>>
Fiddler 教程
查看>>
GitHub详细教程
查看>>
【书评:Oracle查询优化改写】第三章
查看>>
Python 内置彩蛋
查看>>
SQLServer 之 常用函数及查看
查看>>
FrameWork中SQLServer数据源使用宏函数出错解决办法
查看>>
[.net 面向对象编程基础] (8) 基础中的基础——修饰符
查看>>
如何在plSql查询数据查出的数据可编辑
查看>>
2015年第11本:代码整洁之道Clean Code
查看>>
PHP 错误与异常 笔记与总结(11 )register_shutdown_function() 函数的使用
查看>>
talend 将hbase中数据导入到mysql中
查看>>
内置在虚拟机上64位操作系统:该主机支持 Intel VT-x,但 Intel VT-x 残
查看>>
Material Design练习
查看>>
[译] 二、开始iOS编程之前,你还需要做什么?
查看>>
Oracle 查看表空间的大小及使用情况sql语句
查看>>
加密解密帮助类(对称加密)
查看>>
分页和多条件查询功能
查看>>
ActiveReport开发入门-图表的交互性
查看>>
iOS开发之遍历Model类的属性并完善使用Runtime给Model类赋值
查看>>