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();
        }
        }
    }

输出

相关推荐
何苏三月8 天前
设计模式 - 简单工厂模式
java·设计模式·简单工厂模式
ღ᭄ꦿ࿐Never say never꧂8 天前
重生之我在Java世界------学工厂设计模式
java·设计模式·简单工厂模式·应用场景
刘鹏博.10 天前
SpringBoot支付回调枚举+策略+工厂模式
java·spring boot·简单工厂模式·策略模式
无敌岩雀10 天前
C++设计模式创建型模式———简单工厂模式、工厂方法模式、抽象工厂模式
c++·设计模式·简单工厂模式
柒间10 天前
简单工厂(Simple Factory)
开发语言·简单工厂模式
HKJ_numb112 天前
多线程——线程池
java·设计模式·线程池·多线程·简单工厂模式·拒绝策略
LIZHUOLONG115 天前
设计模式:简单工厂模式
设计模式·简单工厂模式
morning_judger16 天前
【设计模式系列】简单工厂模式
java·设计模式·简单工厂模式
Oak Zhang17 天前
工厂模式+策略模式之登录
java·简单工厂模式·策略模式
7年老菜鸡18 天前
工厂模式演示(C++)三分钟读懂
c++·设计模式·简单工厂模式