C#简单工厂模式的实现

cs 复制代码
using System.Diagnostics.Metrics;
using System.Runtime.InteropServices;
using static 手写工厂模式.Program;

namespace 手写工厂模式
{
    internal class Program
    {
        public interface eats {
            void eat();
        }//定义了一个接口
        public class rice : eats
        {
            public void eat() {
                Console.WriteLine("吃米饭");
            }
        }//继承接口并实现方法
        public class pig : eats
        {
            public void eat()
            {
                Console.WriteLine("吃猪猪");
            }
        }//继承接口并实现方法
        public class bird : eats
        {
            public void eat()
            {
                Console.WriteLine("吃小鸟");
            }
        }//继承接口并实现方法
        public class TransportFactory//创建一个工厂
        {
            public static eats GetTransport(string type)//eats 是指定的返回类型,表示该方法返回一个实现了 eats 接口的对象。
            {
                switch (type.ToLower())
                {
                    case "rice":
                        return new rice();
                    case "pig":
                        return new pig();
                    case "bird":
                        return new bird();
                    default:
                        throw new ArgumentException($"不支持该类型:{type}");//如果传入了没有的就会报错
                }
            }
        }
        static void Main(string[] args)
            {
            eats transport = TransportFactory.GetTransport("rice");//这句是必须得它声明了transport的类型为eats
            transport.eat();
            transport = TransportFactory.GetTransport("pig");//因为上面声明了transport的类型所以这里可以直接用
            transport.eat();
        }
        }
    }

输出

相关推荐
NorthCastle1 天前
设计模式-创建型模式-简单工厂模式详解
设计模式·简单工厂模式
越甲八千3 天前
简单工厂模式和策略模式的异同
简单工厂模式·策略模式
重生之我在字节当程序员4 天前
解释工厂模式
开发语言·c++·简单工厂模式
33三 三like5 天前
第三章、简单工厂模式
简单工厂模式
SheldonChang5 天前
设计模式-工厂模式
设计模式·简单工厂模式
hope_wisdom5 天前
实战设计模式之简单工厂模式
设计模式·软件工程·简单工厂模式·架构设计·软件架构
西岭千秋雪_11 天前
设计模式の单例&工厂&原型模式
java·单例模式·设计模式·简单工厂模式·工厂方法模式·抽象工厂模式·原型模式
工业甲酰苯胺14 天前
掌握设计模式之简单工厂模式
java·设计模式·简单工厂模式
暮雨c20 天前
重学设计模式-工厂模式(简单工厂模式,工厂方法模式,抽象工厂模式)
设计模式·简单工厂模式·工厂方法模式
Theodore_102222 天前
12 设计模式之工厂方法模式
java·开发语言·算法·设计模式·简单工厂模式·工厂方法模式