C# 建造者模式(Builder Pattern)
创始人
2025-01-15 06:38:02
0

建造者模式(Builder Pattern),也被称为生成器模式,是一种对象构建模式,旨在将复杂对象的构建过程与表示分离,使得同样的构建过程可以创建不同的表示。这种模式特别适用于构建具有多个组成部分的复杂对象,且这些组成部分的创建和组装方式相对独立。

public class BuilderPatternTest {     public void Main()     {         var director = new Director();//指挥者1         var director1 = new Director1();//指挥者2         var desktopBuilder = new DesktopBuilder();//建造者1         var desktopBuilder2 = new DesktopBuilder2();//建造者2          //第一台电脑,使用指挥者1,使用建造者1         var computer1 = director.Construct(desktopBuilder);         Console.WriteLine(computer1.ToString());          //第二台电脑,使用指挥者2,使用建造者2         var computer2 = director1.Construct(desktopBuilder);         Console.WriteLine(computer2.ToString());          //第三台电脑,使用指挥者1,使用建造者2         var computer3 = director.Construct(desktopBuilder2);         Console.WriteLine(computer3.ToString());          //第四台电脑,使用建造者1,不使用指挥者         var computer4 = new DesktopBuilder()             .SetType("平板电脑")             .SetRam(256)             .SetProcessor("i13212")             .Build();         Console.WriteLine(computer4.ToString());     } }  // 定义产品类 public class Computer {     public string Type { get; }     public bool IsGraphicsCardIncluded { get; }     public int Ram { get; }     public string Processor { get; }      public Computer(string type, bool isGraphicsCardIncluded, int ram, string processor)     {         Type = type;         IsGraphicsCardIncluded = isGraphicsCardIncluded;         Ram = ram;         Processor = processor;     }      public override string ToString()     {         return $"Type: {Type}, Graphics Card: {IsGraphicsCardIncluded}, RAM: {Ram}GB, Processor: {Processor}";     } }  // 抽象建造者 // 也可以使用接口实现抽象建造者 // 方法中返回自身,以便链式调用 public abstract class Builder {     protected string Type;     protected bool IsGraphicsCardIncluded;     protected int Ram;     protected string Processor;      public abstract Computer Build();      public virtual Builder SetType(string type)     {         return this;     }      public virtual Builder SetGraphicsCard(bool isGraphicsCardIncluded)     {         return this;     }      public virtual Builder SetRam(int ram)     {         return this;     }      public virtual Builder SetProcessor(string processor)     {         return this;     } }  // 具体建造者 public class DesktopBuilder : Builder {     public override Computer Build()     {         return new Computer(Type, IsGraphicsCardIncluded, Ram, Processor);     }      public override DesktopBuilder SetType(string type)     {         Type = type;         return this;     }      public override DesktopBuilder SetGraphicsCard(bool isGraphicsCardIncluded)     {         IsGraphicsCardIncluded = isGraphicsCardIncluded;         return this;     }      public override DesktopBuilder SetRam(int ram)     {         Ram = ram;         return this;     }      public override DesktopBuilder SetProcessor(string processor)     {         Processor = processor;         return this;     } }  public class DesktopBuilder2 : Builder {     public override Computer Build()     {         return new Computer(Type, IsGraphicsCardIncluded, Ram, Processor);     }      public override DesktopBuilder2 SetType(string type)     {         Type = type;         return this;     }      public override DesktopBuilder2 SetGraphicsCard(bool isGraphicsCardIncluded)     {         IsGraphicsCardIncluded = isGraphicsCardIncluded;         return this;     }      public override DesktopBuilder2 SetRam(int ram)     {         Ram = ram;         return this;     } }  // 导演类 public class Director {     public Computer Construct(Builder builder)     {         builder.SetType("台式电脑");         builder.SetGraphicsCard(true);         builder.SetRam(16);         builder.SetProcessor("i7");         return builder.Build();     } }  public class Director1 {     public Computer Construct(Builder builder)     {         builder.SetType("笔记本电脑");         builder.SetGraphicsCard(true);         builder.SetRam(128);         builder.SetProcessor("i1000");         return builder.Build();     } }

相关内容

热门资讯

2024新版教程!wpk辅助透... 2024新版教程!wpk辅助透视(德扑数据软件)其实真的有挂(详细透明挂教程)1、德扑数据软件系统规...
AI辅助!德扑之星刷数据(透视... AI辅助!德扑之星刷数据(透视)外挂透明挂辅助器安装(有挂存在)-哔哩哔哩1、让任何用户在无需AI插...
教你攻略!德州ai辅助器(德扑... 教你攻略!德州ai辅助器(德扑ai助手)其实真的是有挂(详细透视辅助教程)教你攻略!德州ai辅助器(...
教你攻略辅助!德扑数据分析软件... 教你攻略辅助!德扑数据分析软件(透明)外挂透明挂辅助app(有挂工具)-哔哩哔哩1、德扑数据分析软件...
wpk教程!wpk微扑克有辅助... wpk教程!wpk微扑克有辅助吗(wepoke模拟器)原来确实真的有挂(详细透视辅助教程)1、这是跨...
2024新版总结辅助!德州辅助... 2024新版总结辅助!德州辅助软件线上(透视)外挂透明挂辅助插件(真的有挂)-哔哩哔哩1、下载好德州...
透明挂教程!wepoke软件收... 透明挂教程!wepoke软件收费是真的吗(德州之星辅助)原来真的是有挂(详细辅助挂教程)1)wepo...
2024新版技巧辅助!wepo... 2024新版技巧辅助!wepoke游戏数据有说法吗(透视)外挂透明挂辅助器安装(有挂详情)-哔哩哔哩...
技巧教程!pokerworld... 技巧教程!pokerworld下载(WPK透视辅助)原来真的有挂(详细透明挂教程);1分钟了解详细教...
德州论坛辅助!wpk外挂被实锤... 德州论坛辅助!wpk外挂被实锤(透明)外挂透明挂辅助app(有挂分析)-哔哩哔哩是一款可以让一直输的...