0

0

C# Facade外观模式中天河城购物出现的问题解决

黄舟

黄舟

发布时间:2017-09-15 11:22:33

|

1593人浏览过

|

来源于php中文网

原创

这篇文章主要介绍了c#设计模式之facade外观模式解决天河城购物问题,简单描述了外观模式的定义并结合具体实例分析了外观模式解决购物问题的相关步骤与操作技巧,需要的朋友可以参考下

本文实例讲述了C#设计模式之Facade外观模式解决天河城购物问题。分享给大家供大家参考,具体如下:

一、理论定义

外观模式   把  分散的子系统,集合成一个系统,提供一站式服务。

二、应用举例

需求描述: 聂小倩 和 宁采臣是一对小富则安 的聊斋夫妻。住在比较偏远的小乡村。
今天,两人初次来到大城市广州,听说天河城提供一站式服务,不像小城市那样,买个东西  得  东奔西跑。
在一个地方,就可以买到 自己想要的衣服,电脑,鞋子,Iphone,还可以看大片,
吃冰淇淋,吃真功夫,买化妆品,珠宝首饰。天河城,果然是一宝地啊。
Ok,边走边看。

三、具体编码

1.阿迪达斯


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Com.Design.Gof.Facade
{
  /// 
  /// 阿迪达斯
  /// 
  public class Adidas
  {
    public void Serivce(string something) {
      Console.WriteLine("在阿迪达斯购买了: "+something);
    }
  }
}

2.飞扬影城


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Com.Design.Gof.Facade
{
  /// 
  /// 飞扬影城
  /// 
  public class FeiYangMovie
  {
    public void Serivce(string something)
    {
      Console.WriteLine("在飞扬影城看了一部电影: " + something);
    }
  }
}

3.国美电器


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Com.Design.Gof.Facade
{
  /// 
  /// 国美电器
  /// 
  public class GoMe
  {
    public void Serivce(string something)
    {
      Console.WriteLine("在国美电器 买了: " + something);
    }
  }
}

4.哈根达斯


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Com.Design.Gof.Facade
{
  /// 
  /// 哈根达斯
  /// 
  public class HaagenDaz
  {
    public void Serivce(string something)
    {
      Console.WriteLine("在哈根达斯 买了: " + something);
    }
  }
}

5.真功夫


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Com.Design.Gof.Facade
{
  /// 
  /// 真功夫
  /// 
  public class KungFu
  {
    public void Serivce(string something)
    {
      Console.WriteLine("在真功夫 吃了: " + something);
    }
  }
}

6.六福珠宝


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Com.Design.Gof.Facade
{
  /// 
  /// 六福珠宝
  /// 
  public class LukFook
  {
    public void Serivce(string something)
    {
      Console.WriteLine("在六福珠宝 买了: " + something);
    }
  }
}

7.耐克

Meku
Meku

AI应用和网页开发工具

下载


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Com.Design.Gof.Facade
{
  /// 
  /// 耐克
  /// 
  public class NIKE
  {
    public void Serivce(string something)
    {
      Console.WriteLine("在耐克店 买了: " + something);
    }
  }
}

8.ONLY


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Com.Design.Gof.Facade
{
  /// 
  /// ONLY时装
  /// 
  public class ONLY
  {
    public void Serivce(string something)
    {
      Console.WriteLine("在ONLY时装 买了: " + something);
    }
  }
}

9.苏宁电器


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Com.Design.Gof.Facade
{
  /// 
  /// 苏宁电器
  /// 
  public class Suning
  {
    public void Serivce(string something)
    {
      Console.WriteLine("在苏宁电器 买了: " + something);
    }
  }
}

10.Veromoda国际时装品牌


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Com.Design.Gof.Facade
{
  /// 
  /// Veromoda国际时装品牌
  /// 
  public class Veromoda
  {
    public void Serivce(string something)
    {
      Console.WriteLine(something);
    }
  }
}

11.消费者


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Com.Design.Gof.Facade
{
  /// 
  /// 消费店子
  /// 
  public enum ShopOption
  {
    Adidas = 1, DKNY = 2, GoMe = 3,
    NIKE = 4, Suning = 5, Veromoda = 6,
    FeiYangMovie = 7, HaagenDaz = 8, LukFook = 9, KungFu = 10
  }
  /// 
  /// 消费单
  /// 
  public class Bill {
    /// 
    /// 要去的消费店
    /// 
    public ShopOption Item { get; set; }
    /// 
    /// 去这个店要买啥
    /// 
    public string Something { get; set; }
  }
  public class Consumer
  {
    /// 
    /// 消费单
    /// 
    public IList Items { get; set; }
    /// 
    /// 姓名
    /// 
    public string Name { get; set; }
  }
}

12.天河城---一站式服务


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
namespace Com.Design.Gof.Facade
{
  /// 
  /// 天河城
  /// 
  public class TeeMall
  {
    private static readonly Assembly assembly = Assembly.LoadFile(AppDomain.CurrentDomain.BaseDirectory + @"\Com.Design.Gof.dll");
    /// 
    /// 一站式服务
    /// 
    /// 
    public void OfferService(Consumer consumer) {
      Console.WriteLine("我是: " + consumer.Name+",不差钱,今天来天河城玩: ");
      Console.WriteLine("----------------------------------------------");
      foreach (Bill item in consumer.Items)
      {
        object obj= assembly.CreateInstance("Com.Design.Gof.Facade." + item.Item);
        MethodInfo info = obj.GetType().GetMethod("Serivce");
        info.Invoke(obj, new object[] { item.Something });
      }
      Console.WriteLine();
    }
  }
}

13.主函数调用


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Com.Design.Gof.Facade;
namespace Com.Design.Gof.Test
{
  class Program
  {
    static void Main(string[] args)
    {
      //天河城购物中心
      TeeMall TeeMall = new TeeMall();
      //消费者 1
      Consumer consumer = new Consumer
      {
        Name="聂小倩",
        //消费单
        Items = new List {
         new Bill{ Item=ShopOption.Adidas, Something="运动服"},
         new Bill{ Item=ShopOption.GoMe, Something="苹果IPhone智能手机"},
         new Bill{ Item=ShopOption.FeiYangMovie, Something="<冰河世纪 4>"},
         new Bill{ Item=ShopOption.KungFu, Something="香菇炖鸡"},
          new Bill{ Item=ShopOption.LukFook, Something="金项链"},
        }
      };
      TeeMall.OfferService(consumer);
      //消费者 2
      consumer = new Consumer
      {
        Name = "宁采臣",
        //消费单
        Items = new List {
         new Bill{ Item=ShopOption.FeiYangMovie, Something="《太空一号》"},
         new Bill{ Item=ShopOption.Veromoda, Something="然后去了Veromoda时装,买了一套服装"},
         new Bill{ Item=ShopOption.HaagenDaz, Something="买了一雪糕"},
         new Bill{ Item=ShopOption.Suning, Something="在苏宁看买平板电脑"},
        }
      };
      TeeMall.OfferService(consumer);
      Console.ReadKey();
    }
  }
}

14.运行结果

15.总结

天河城 TeeMall 理论上应该包括 所有 商场的引用,

这里用反射 避免了这一动作。

热门AI工具

更多
DeepSeek
DeepSeek

幻方量化公司旗下的开源大模型平台

豆包大模型
豆包大模型

字节跳动自主研发的一系列大型语言模型

通义千问
通义千问

阿里巴巴推出的全能AI助手

腾讯元宝
腾讯元宝

腾讯混元平台推出的AI助手

文心一言
文心一言

文心一言是百度开发的AI聊天机器人,通过对话可以生成各种形式的内容。

讯飞写作
讯飞写作

基于讯飞星火大模型的AI写作工具,可以快速生成新闻稿件、品宣文案、工作总结、心得体会等各种文文稿

即梦AI
即梦AI

一站式AI创作平台,免费AI图片和视频生成。

ChatGPT
ChatGPT

最最强大的AI聊天机器人程序,ChatGPT不单是聊天机器人,还能进行撰写邮件、视频脚本、文案、翻译、代码等任务。

相关专题

更多
Python 自然语言处理(NLP)基础与实战
Python 自然语言处理(NLP)基础与实战

本专题系统讲解 Python 在自然语言处理(NLP)领域的基础方法与实战应用,涵盖文本预处理(分词、去停用词)、词性标注、命名实体识别、关键词提取、情感分析,以及常用 NLP 库(NLTK、spaCy)的核心用法。通过真实文本案例,帮助学习者掌握 使用 Python 进行文本分析与语言数据处理的完整流程,适用于内容分析、舆情监测与智能文本应用场景。

10

2026.01.27

拼多多赚钱的5种方法 拼多多赚钱的5种方法
拼多多赚钱的5种方法 拼多多赚钱的5种方法

在拼多多上赚钱主要可以通过无货源模式一件代发、精细化运营特色店铺、参与官方高流量活动、利用拼团机制社交裂变,以及成为多多进宝推广员这5种方法实现。核心策略在于通过低成本、高效率的供应链管理与营销,利用平台社交电商红利实现盈利。

109

2026.01.26

edge浏览器怎样设置主页 edge浏览器自定义设置教程
edge浏览器怎样设置主页 edge浏览器自定义设置教程

在Edge浏览器中设置主页,请依次点击右上角“...”图标 > 设置 > 开始、主页和新建标签页。在“Microsoft Edge 启动时”选择“打开以下页面”,点击“添加新页面”并输入网址。若要使用主页按钮,需在“外观”设置中开启“显示主页按钮”并设定网址。

16

2026.01.26

苹果官方查询网站 苹果手机正品激活查询入口
苹果官方查询网站 苹果手机正品激活查询入口

苹果官方查询网站主要通过 checkcoverage.apple.com/cn/zh/ 进行,可用于查询序列号(SN)对应的保修状态、激活日期及技术支持服务。此外,查找丢失设备请使用 iCloud.com/find,购买信息与物流可访问 Apple (中国大陆) 订单状态页面。

136

2026.01.26

npd人格什么意思 npd人格有什么特征
npd人格什么意思 npd人格有什么特征

NPD(Narcissistic Personality Disorder)即自恋型人格障碍,是一种心理健康问题,特点是极度夸大自我重要性、需要过度赞美与关注,同时极度缺乏共情能力,背后常掩藏着低自尊和不安全感,影响人际关系、工作和生活,通常在青少年时期开始显现,需由专业人士诊断。

7

2026.01.26

windows安全中心怎么关闭 windows安全中心怎么执行操作
windows安全中心怎么关闭 windows安全中心怎么执行操作

关闭Windows安全中心(Windows Defender)可通过系统设置暂时关闭,或使用组策略/注册表永久关闭。最简单的方法是:进入设置 > 隐私和安全性 > Windows安全中心 > 病毒和威胁防护 > 管理设置,将实时保护等选项关闭。

6

2026.01.26

2026年春运抢票攻略大全 春运抢票攻略教你三招手【技巧】
2026年春运抢票攻略大全 春运抢票攻略教你三招手【技巧】

铁路12306提供起售时间查询、起售提醒、购票预填、候补购票及误购限时免费退票五项服务,并强调官方渠道唯一性与信息安全。

122

2026.01.26

个人所得税税率表2026 个人所得税率最新税率表
个人所得税税率表2026 个人所得税率最新税率表

以工资薪金所得为例,应纳税额 = 应纳税所得额 × 税率 - 速算扣除数。应纳税所得额 = 月度收入 - 5000 元 - 专项扣除 - 专项附加扣除 - 依法确定的其他扣除。假设某员工月工资 10000 元,专项扣除 1000 元,专项附加扣除 2000 元,当月应纳税所得额为 10000 - 5000 - 1000 - 2000 = 2000 元,对应税率为 3%,速算扣除数为 0,则当月应纳税额为 2000×3% = 60 元。

35

2026.01.26

oppo云服务官网登录入口 oppo云服务登录手机版
oppo云服务官网登录入口 oppo云服务登录手机版

oppo云服务https://cloud.oppo.com/可以在云端安全存储您的照片、视频、联系人、便签等重要数据。当您的手机数据意外丢失或者需要更换手机时,可以随时将这些存储在云端的数据快速恢复到手机中。

121

2026.01.26

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
TP5.1博客后台视频教程
TP5.1博客后台视频教程

共8课时 | 0.8万人学习

C# 教程
C# 教程

共94课时 | 7.7万人学习

python编程入门系列图文教程
python编程入门系列图文教程

共65课时 | 24.7万人学习

关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号