【23种GOF设计模式】C#代码完整案例详解--抽象工厂

来自:CCNetCore社区,一个关注.Netcore领域的社区团队。

抽象工厂AbstractFactory

抽象工厂AbstractFactory 创建型设计模式

用于复杂对象的创建,是工厂方法的进阶。只是将工厂方法再次继承一个抽象类,用抽奖类接受不同的工厂。

Program.cs

using FactoryPattern.Sanguosha.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace AbstractFactoryPatterm
{
   public class Program
   {
      public static void Main(string[] args)
       {
          AbstractFactory wu   = new WuFactory();
           IGroup group= wu.CreateGroup();
           group.ShowGroup();

           IGenerals generals= wu.CreateGenerals();
           generals.ShowGenerals();
           Console.ReadKey();
       }
   }
}
AbstractFactory.cs
using FactoryPattern.Sanguosha.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace AbstractFactoryPatterm
{
   public abstract class AbstractFactory
   {
       public abstract IGroup CreateGroup();
       public abstract IGenerals CreateGenerals();
   }
}

WuFactory.cs

using FactoryPattern.Sanguosha.Interface;
using FactoryPattern.Sanguosha.Service;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace AbstractFactoryPatterm
{
   public class WuFactory : AbstractFactory
   {
       public override IGenerals CreateGenerals()
       {
          return new GeneralsWu();
       }

       public override IGroup CreateGroup()
       {
           return new GroupWu();
       }
   }
}

IGenerals.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FactoryPattern.Sanguosha.Interface
{
   public interface IGenerals
   {
       void ShowGenerals();
   }
}

IGroup.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FactoryPattern.Sanguosha.Interface
{
   public interface IGroup
   {
       void ShowGroup();
   }
}

GeneralsWu.cs

using FactoryPattern.Sanguosha.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FactoryPattern.Sanguosha.Service
{
   public class GeneralsWu : IGenerals
   {
       public void ShowGenerals()
       {
           Console.WriteLine("{0} 夏侯渊",this.GetType().Name);
       }
   }
}

GroupWu.cs

using FactoryPattern.Sanguosha.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FactoryPattern.Sanguosha.Service
{
   public class GeneralsWu : IGenerals
   {
       public void ShowGenerals()
       {
           Console.WriteLine("{0} 夏侯渊",this.GetType().Name);
       }
   }
}

最后,想了解更多,可加入CCNetCore社区,橙子带你走上.netcore学习之路。
你可以免费获取到:

  • 设计模式
  • 面试八股文
  • 问题答疑
  • 闲聊茶馆
  • Asp.Netcore图文源码解读
  • 第一代软件架构单体应用相关技术
  • 第二代软件架构分布式应用相关技术
  • 第三代软件架构微服务应用相关技术
  • 第四代软件架构网格服务应用相关技术

站点网址:ccnetcore.com

你可能感兴趣的:(设计模式,c#,开发语言,设计模式,.NetCore)