C#組合形式實例詳解。本站提示廣大學習愛好者:(C#組合形式實例詳解)文章只能為提供參考,不一定能成為您想要的結果。以下是C#組合形式實例詳解正文
本文實例講述了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#法式設計有所贊助。