欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

C#组合模式实例详解

时间:2021-01-24 11:10:24|栏目:.NET代码|点击:

本文实例讲述了C#组合模式。分享给大家供大家参考。具体如下:

Company.cs如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
  public abstract class Company
  {
    protected string name;
    public Company(string name) 
    {
      this.name = name;
    }
    public abstract void Add(Company c);
    public abstract void Remove(Company c);
    public abstract void Display(int depth);
    public abstract void LineOfDuty();
  }
}

ConcreteCompany.cs如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
  public class ConcreteCompany:Company
  {
    private List<Company> children = new List<Company>();
    public ConcreteCompany(string name) 
      :base(name)
    {}
    public override void Add(Company c)
    {
      children.Add(c);
    }
    public override void Remove(Company c)
    {
      children.Remove(c);
    }
    public override void Display(int depth)
    {
      Console.WriteLine(new String('-',depth)+name);
      foreach(Company component in children)
      {
        component.Display(depth+2);
      }
    }
    public override void LineOfDuty()
    {
      foreach(Company component in children)
      {
        component.LineOfDuty();
      }
    }
  }
}

FinanceDepartment.cs如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
  public class FinanceDepartment:Company
  {
    public FinanceDepartment(string name) : base(name) { }
    public override void Add(Company c)
    {
    }
    public override void Remove(Company c)
    {
      
    }
    public override void Display(int depth)
    {
      Console.WriteLine(new String('-',depth)+name);
    }
    public override void LineOfDuty()
    {
      Console.WriteLine("{0} 财务支付管理",name);
    }
  }
}

HRdepartment.cs如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
  public class HRdepartment:Company
  {
    public HRdepartment(string name)
      :base(name)
    { }
    public override void Add(Company c)
    {
    }
    public override void Remove(Company c)
    {
    }
    public override void Display(int depth)
    {
      Console.WriteLine(new String('-',depth)+name);
    }
    public override void LineOfDuty()
    {
      Console.WriteLine("{0} 招聘培训管理",name);
    }
  }
}

Program.cs如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
  class Program
  {
    static void Main(string[] args)
    {
      ConcreteCompany root = new ConcreteCompany("北京总共司");
      root.Add(new HRdepartment("人力部"));
      root.Add(new FinanceDepartment("财务部"));
      ConcreteCompany comp = new ConcreteCompany("上海分公司");
      comp.Add(new HRdepartment("分工司人力部"));
      comp.Add(new FinanceDepartment("分公司财务部"));
      root.Add(comp);
      ConcreteCompany comp1 = new ConcreteCompany("南京分部");
      comp1.Add(new HRdepartment("南京人力部"));
      comp1.Add(new FinanceDepartment("南京财务部"));
      comp.Add(comp1);
      ConcreteCompany comp2 = new ConcreteCompany("杭洲分部");
      comp2.Add(new HRdepartment("杭州人事部"));
      comp2.Add(new FinanceDepartment("杭州财务部"));
      comp.Add(comp2);
      root.Display(1);
      Console.ReadKey();
    }
  }
}

希望本文所述对大家的C#程序设计有所帮助。

上一篇:asp.net中一款极为简单实用的图表插件(jquery)

栏    目:.NET代码

下一篇:解析在.net中使用XSLT转换xml文档的示例详解

本文标题:C#组合模式实例详解

本文地址:http://www.codeinn.net/misctech/50557.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有