using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace memcached { public interface IStates { bool PreProduction(Context context,string FlowNo); //上機 bool PostProduction(Context c…
前言 之前介绍了设计模式的原则和分类等概述.今天开启设计模式的学习,首先要介绍的就是工厂模式,在介绍工厂模式前会先介绍一下简单工厂模式,这样由浅入深来介绍. 简单工厂模式 做法:创建一个工厂(方法或类)用来制造对象. 当一个人想要用手机的时候,需要自己创建手机然后来使用. 如下: public class IphoneX { public IphoneX(){ System.out.println("##### 制造iphoneX #####"); } } public class I…