您的位置:首页 > 其它

【软考学习】设计模式——外观模式

2018-01-14 23:20 337 查看
【背景】

设计模式是非常重要的一块知识,每个设计模式都值得深入了解和学习。

【内容】

结构型设计模式总结:

外观(门面)设计模式总结:
    一、定义:为子系统中的一组接口提供一个一直的界面,此模式定义了一个高层接口,这个接口使得这一子系统更加容易使用。

    二、UML结构图:



    三、代码实现:

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

namespace 外观模式
{
class Program
{
static void Main(string[] args)
{
Facade facade = new Facade();
facade.MethodA();
facade.MethodB();

Console.Read();
}
}

class SubSystemOne
{
public void MethodOne()
{
Console.WriteLine("子系统方法一");
}
}

class SubSystemTwo
{
public void MethodTwo()
{
Console.WriteLine("子系统方法二");
}
}

class SubSystemThree
{
public void MethodThree()
{
Console.WriteLine("子系统方法三");
}
}

class SubSystemFour
{
public void MethodFour()
{
Console.WriteLine("子系统方法四");
}
}

class Facade
{
SubSystemOne one;
SubSystemTwo two;
SubSystemThree three;
SubSystemFour four;

public Facade()
{
one = new SubSystemOne();
two = new SubSystemTwo();
three = new SubSystemThree();
four = new SubSystemFour();
}

public void MethodA()
{
Console.WriteLine("\n方法组A()----");
one.MethodOne();
two.MethodTwo();
four.MethodFour();
}

public void MethodB()
{
Console.WriteLine("\n方法组B()----");
two.MethodTwo();
three.MethodThree();
}
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: