1.简介 泛型工厂理论上不算Gof23中设计模式之一,但是也算是一种非常好的设计模式,个人认为,废话不多说,先写个简单的抽象工厂,在写一个泛型工厂的例子来比较抽象和泛型的区别. 2.实战 还是房屋和道路,always road and house,例子不重要重要的是对模式的理解. 3.抽象工厂 public class Program { public static void Main(string[] args) { var build = new BuildSystem(new Modern…