設計模式學習——抽象工廠模式(Abstract Factory Pattern)

来源:http://www.cnblogs.com/chinxi/archive/2017/08/13/7353687.html
-Advertisement-
Play Games

現有一批裝備(產品),分為不同的部位(上裝、下裝)與不同的等級(lv1、lv2)。又有不同lv的工廠,只生產對應lv的全套裝備。 代碼實現上...本次寫得比較偷懶,函數實現都寫在頭文件了.... 有些重覆的代碼,是直接用sed替換一些字元生成的。如: Suit Trousers Clothes Tr ...


現有一批裝備(產品),分為不同的部位(上裝、下裝)與不同的等級(lv1、lv2)。又有不同lv的工廠,只生產對應lv的全套裝備。

 

代碼實現上...本次寫得比較偷懶,函數實現都寫在頭文件了....

有些重覆的代碼,是直接用sed替換一些字元生成的。如:

sed 's/lv1/lv2/g' Factory_lv1.h | sed 's/LV1/LV2/g' > Factory_lv2.h

 

Suit

 1  ///
 2  /// @file    Suit.h
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-13 15:47:04
 5  ///
 6 
 7 #ifndef __SUIT_H__
 8 #define __SUIT_H__
 9 
10 #include <iostream>
11  
12 namespace marrs{
13  
14 using std::cout;
15 using std::endl;
16 using std::string;
17 
18 class Suit
19 {
20     public:
21         virtual ~Suit(){}
22     
23     public:
24         void put_on()
25         {
26             cout << "put on" << endl;
27             show_msg();
28         }
29         void put_off()
30         {
31             cout << "put off" << endl;
32             show_msg();
33         }
34 
35     public:
36         virtual string get_name() = 0;
37         virtual string get_type() = 0;
38 
39     private:
40         void show_msg()
41         {
42             cout << "type : " << get_type() << endl;
43             cout << "name : " << get_name() << endl;
44         }
45 };
46  
47 }
48 
49 #endif // __SUIT_H__

 

Trousers

 1  ///
 2  /// @file    Trousers.h
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-13 15:54:48
 5  ///
 6 
 7 #ifndef __TROUSERS_H__
 8 #define __TROUSERS_H__
 9 
10 #include "Suit.h"
11 
12 namespace marrs{
13 
14 class Trousers
15 : public Suit
16 {
17     public:
18         string get_type()
19         {
20             return "Trousers";
21         }
22 };
23 
24 }
25 
26 #endif // __TROUSERS_H__

 

Clothes

 1  ///
 2  /// @file    Clothes.h
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-13 16:01:08
 5  ///
 6  
 7 #ifndef __CLOTHES_H__
 8 #define __CLOTHES_H__
 9 
10 #include "Suit.h"
11 
12 namespace marrs{
13 
14 class Clothes
15 : public Suit
16 {
17     public:
18         string get_type()
19         {
20             return "Clothes";
21         }
22 };
23  
24 }
25 
26 #endif // __CLOTHES_H__

 

Trouser_lv1

 1  ///
 2  /// @file    Trouser_lv1.h
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-13 16:02:40
 5  ///
 6  
 7 #ifndef __TROUSER_LV1_H__
 8 #define __TROUSER_LV1_H__
 9 
10 #include "Trousers.h"
11 
12 namespace marrs{
13 
14 class Trouser_lv1
15 : public Trousers
16 {
17     public:
18         string get_name()
19         {
20             return "Trouser_lv1";
21         }
22 };
23  
24 }
25 
26 #endif // __TROUSER_LV1_H__

 

Trouser_lv2

 1  ///
 2  /// @file    Trouser_lv2.h
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-13 16:02:40
 5  ///
 6  
 7 #ifndef __TROUSER_LV2_H__
 8 #define __TROUSER_LV2_H__
 9 
10 #include "Trousers.h"
11 
12 namespace marrs{
13 
14 class Trouser_lv2
15 : public Trousers
16 {
17     public:
18         string get_name()
19         {
20             return "Trouser_lv2";
21         }
22 };
23  
24 }
25 
26 #endif // __TROUSER_LV2_H__

 

Clothe_lv1

 1  ///
 2  /// @file    Clothe_lv1.h
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-13 16:02:40
 5  ///
 6  
 7 #ifndef __CLOTHE_LV1_H__
 8 #define __CLOTHE_LV1_H__
 9 
10 #include "Clothes.h"
11 
12 namespace marrs{
13 
14 class Clothe_lv1
15 : public Clothes
16 {
17     public:
18         string get_name()
19         {
20             return "Clothe_lv1";
21         }
22 };
23  
24 }
25 
26 #endif // __CLOTHE_LV1_H__

 

Clothe_lv2

 1  ///
 2  /// @file    Clothe_lv2.h
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-13 16:02:40
 5  ///
 6  
 7 #ifndef __CLOTHE_LV2_H__
 8 #define __CLOTHE_LV2_H__
 9 
10 #include "Clothes.h"
11 
12 namespace marrs{
13 
14 class Clothe_lv2
15 : public Clothes
16 {
17     public:
18         string get_name()
19         {
20             return "Clothe_lv2";
21         }
22 };
23  
24 }
25 
26 #endif // __CLOTHE_LV2_H__

 

Factory

 1  ///
 2  /// @file    Factory.h
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-13 16:07:00
 5  ///
 6 
 7 #ifndef __FACTORY_H__
 8 #define __FACTORY_H__
 9 
10 #include "Trousers.h"
11 #include "Clothes.h"
12 
13 namespace marrs{
14 
15 class Factory
16 {
17     public:
18         virtual ~Factory(){}
19 
20     public:
21         virtual Trousers * Create_Trousers() = 0;
22         virtual Clothes * Create_Clothes() = 0;
23 };
24  
25 }
26 
27 #endif // __FACTORY_H__

 

Factory_lv1

 1  ///
 2  /// @file    Factory_lv1.h
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-13 16:09:15
 5  ///
 6  
 7 #ifndef __FACTORY_LV1_H__
 8 #define __FACTORY_LV1_H__
 9 
10 #include "Factory.h"
11 #include "Trouser_lv1.h"
12 #include "Clothe_lv1.h"
13 
14 namespace marrs{
15  
16 class Factory_lv1
17 : public Factory
18 {
19     public:
20         Trousers * Create_Trousers()
21         {
22             return new Trouser_lv1;
23         }
24 
25         Clothes * Create_Clothes()
26         {
27             return new Clothe_lv1;
28         }
29 };
30  
31 }
32 
33 #endif // __FACTORY_LV1_H__

 

Factory_lv2

 1  ///
 2  /// @file    Factory_lv2.h
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-13 16:09:15
 5  ///
 6  
 7 #ifndef __FACTORY_LV2_H__
 8 #define __FACTORY_LV2_H__
 9 
10 #include "Factory.h"
11 #include "Trouser_lv2.h"
12 #include "Clothe_lv2.h"
13 
14 namespace marrs{
15  
16 class Factory_lv2
17 : public Factory
18 {
19     public:
20         Trousers * Create_Trousers()
21         {
22             return new Trouser_lv2;
23         }
24 
25         Clothes * Create_Clothes()
26         {
27             return new Clothe_lv2;
28         }
29 };
30  
31 }
32 
33 #endif // __FACTORY_LV2_H__

 

main

 1  ///
 2  /// @file    main.cc
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-13 16:11:54
 5  ///
 6 
 7 #include "Factory_lv1.h"
 8 #include "Factory_lv2.h"
 9 
10 using namespace marrs;
11 
12 void Lv1_action()
13 {
14     Factory * factory = new Factory_lv1;
15     Suit * suit_trouse_lv1 = factory->Create_Trousers();
16     suit_trouse_lv1->put_on();
17     suit_trouse_lv1->put_off();
18     Suit * suit_clothe_lv1 = factory->Create_Clothes();
19     suit_clothe_lv1->put_on();
20     suit_clothe_lv1->put_off();
21     delete suit_trouse_lv1;
22     delete suit_clothe_lv1;
23     delete factory;
24     return;
25 }
26 
27 void Lv2_action()
28 {
29     Factory * factory = new Factory_lv2;
30     Suit * suit_trouse_lv2 = factory->Create_Trousers();
31     suit_trouse_lv2->put_on();
32     suit_trouse_lv2->put_off();
33     Suit * suit_clothe_lv2 = factory->Create_Clothes();
34     suit_clothe_lv2->put_on();
35     suit_clothe_lv2->put_off();
36     delete suit_trouse_lv2;
37     delete suit_clothe_lv2;
38     delete factory;
39     return;
40 }
41 
42 int main()
43 {
44     Lv1_action();
45     Lv2_action();
46     return 0;
47 }

 

 

編譯,運行

[ccx@ubuntu ~/object-oriented/Abstract-Factory-Pattern]$>g++ * -o suit_action.exe
[ccx@ubuntu ~/object-oriented/Abstract-Factory-Pattern]$>./suit_action.exe 
put on
type : Trousers
name : Trouser_lv1
put off
type : Trousers
name : Trouser_lv1
put on
type : Clothes
name : Clothe_lv1
put off
type : Clothes
name : Clothe_lv1
put on
type : Trousers
name : Trouser_lv2
put off
type : Trousers
name : Trouser_lv2
put on
type : Clothes
name : Clothe_lv2
put off
type : Clothes
name : Clothe_lv2

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 上一章節,我們講解了通過mybatis的懶載入來提高查詢效率,那麼除了懶載入,還有什麼方法能提高查詢效率呢?這就是我們本章講的緩存。 mybatis 為我們提供了一級緩存和二級緩存,可以通過下圖來理解: ①、一級緩存是SqlSession級別的緩存。在操作資料庫時需要構造sqlSession對象,在 ...
  • 上一篇我們介紹了JVM的基本運行流程以及記憶體結構,對JVM有了初步的認識,這篇文章我們將根據JVM的記憶體模型探索java當中變數的可見性以及不同的java指令在併發時可能發生的指令重排序的情況。 記憶體模型 首先我們思考一下一個java線程要向另外一個線程進行通信,應該怎麼做,我們再把需求明確一點,一 ...
  • 目錄 · 初步認識 · Java里程碑(關鍵部分) · 理解虛擬機 · Java虛擬機種類 · Java語言規範 · Java虛擬機規範 · 基本結構 · Java堆(Heap) · Java棧(Stacks) · 方法區(Method Area) · 直接記憶體(Direct Memory) · 本 ...
  • 類與Class對象 類是程式的一部分,每個類都有一個Class對象,即每當編寫並且編譯一個新類的時候就會產生一個Class對象。當程式創建第一個對類的靜態成員的引用的時候,會將該類動態載入到JVM中,這個說明瞭類的構造起器也是一個靜態方法,即使在構造器之前並沒有使用static關鍵字。所以java程 ...
  • 前段時間應因緣梳理了下自己的 Java 知識體系, 成文一篇望能幫到即將走進或正在 Java 世界跋涉的程式員們。 第一張,基礎圖 大約在 2003 年我開始知道 Java 的(當時還在用 Delphi),但到 2004 年本科畢業才開始正式決定學習 Java。 那時覺得用 Delphi 寫 C/S ...
  • 從大型網站技術架構_核心原理與案例分析 李智慧 一書中領悟到的東西。我們的技術只有基礎牢固了才能創新,本書中作者講述了網站架構的發展歷程。其中從最簡單的 LAMP架構到應用與數據分離,然後是使用緩存提高客戶體驗度。再到分層,資料庫的讀取分離,集群,分散式部署等。處理網站高併發的問題肯定會牽扯到高併發 ...
  • 放假啦~學生們要買車票回家了,有汽車票、火車票,等。但是,車站很遠,又要考試,怎麼辦呢?找代理買啊,雖然要多花點錢,但是,說不定在搞活動,有折扣呢~ 編譯,運行 ...
  • 本周要進行boost asio庫的學習,在學習之前發現最好需要先瞭解一下前攝器模式,這樣對asio庫的理解很有幫助,故寫下此文 我之前寫的隨筆XShell的模擬實現中的鏈接方式可以說是同步的(伺服器阻塞等待鏈接),這樣當有伺服器端在等待鏈接的時候就浪費了大量的資源,我們可以讓伺服器非同步等待客戶端的鏈 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...