中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中的簡單工廠設計模式示例

發布時間:2020-07-10 02:47:08 來源:網絡 閱讀:441 作者:風信子0311 欄目:編程語言

這個是用面向對象的方法來實現加,減,乘,除的計算,使用了“簡單工廠的設計模式”。


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 簡單公司實現計算1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("請輸入第一個數字:");
          double n1=  Convert.ToDouble( Console.ReadLine());
          Console.WriteLine("請輸入第二個數字:");
         double n2= Convert.ToDouble(Console.ReadLine());
         Console.WriteLine("請輸入一個操作符");
        string oper= Console.ReadLine();
        CalFather cal = Result(oper, n1, n2);
       double result= cal.GetResult();
       Console.WriteLine(result);
       Console.ReadKey();


        }

        /// <summary>
        /// 簡單工廠模式
        /// </summary>
        /// <param name="oper">傳入的操作符</param>
        /// <param name="n1">第一個運算的數字</param>
        /// <param name="n2">第二個運算的數字</param>
        /// <returns></returns>
        public static CalFather Result(string oper,double n1,double n2)
        {
            CalFather cal = null;
            switch (oper)
            {
                case "+": cal = new Add(n1, n2);
                    break;
                case "-": cal = new Sub(n1, n2);
                    break;
                case "*": cal = new Ride(n1, n2);
                    break;
                case "/":cal=new Chu(n1,n2);
                    break;
                default: Console.WriteLine("輸入有誤");
                    break;
            }

            return cal;
        }
    }
    /// <summary>
    /// 父類模型,用abstract抽象函數來實現多態
    /// </summary>
    public abstract class CalFather
    {
        public double NumberOne
        {
            get;
            set;
        }
        public double NumberTwo
        {
            get;
            set;
        }

        public CalFather(double One,double Two)
        {
            this.NumberOne = One;
            this.NumberTwo = Two;
        }

        public abstract double GetResult();
    }
    /// <summary>
    /// 加法的子類
    /// </summary>
    public class Add:CalFather
    {
        public Add(double one,double two):base(one,two)
        {

        }
        public override double GetResult()
        {
            return this.NumberOne + this.NumberTwo;
        }
    }
    /// <summary>
    /// 減法的子類
    /// </summary>
    public class Sub:CalFather
    {
        public Sub(double one,double two):base(one,two)
        {

        }
        public override double GetResult()
        {
            return this.NumberOne - this.NumberTwo;
        }
    }
    /// <summary>
    /// 乘法的子類
    /// </summary>
    public class Ride:CalFather
    {
        public Ride(double one,double two):base(one,two)
        {

        }
        public override double GetResult()
        {
            return this.NumberOne * this.NumberTwo;
        }
    }
    /// <summary>
    /// 除法的子類
    /// </summary>
    public class Chu:CalFather
    {
        public Chu(double one,double two):base(one,two)
        {

        }
        public override double GetResult()
        {
            return this.NumberOne / this.NumberTwo;
        }
    }
}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

青州市| 太保市| 疏勒县| 大洼县| 昌邑市| 绍兴县| 饶河县| 武功县| 萍乡市| 平顺县| 个旧市| 大丰市| 钦州市| 安新县| 枞阳县| 那曲县| 长治县| 龙泉市| 吉首市| 沙雅县| 武乡县| 历史| 房产| 海门市| 乌兰浩特市| 泾源县| 灵台县| 宜川县| 阳春市| 开平市| 新建县| 大丰市| 城固县| 定南县| 中阳县| 措美县| 南丰县| 石家庄市| 康马县| 双辽市| 金堂县|