Builder模式也可以造车. 对于Builder模式来说,首相要把要造的车确定下来: public class Car { public string Model { get; set; } public string Engine { get; set; } public string Transmission { get; set; } public string Body { get; set; } public int Doors { get; set; } public List<s…
在五大设计原则的基础上经过GOF(四人组)的总结,得出了23种经典设计模式,其中分为三大类:创建型(5种).结构型(7种).行为型(11种).今天对创建型中的构建者(Builder)模式的思想进行了一下复习和实践,在此做一下记录.理解或实践不到位的地方,希望走过路过的看官指正一下! 先来看看构建者(Builder)模式的定义: Separate the construction of a complex object from its representation,so that the sam…