.NET設(shè)計模式(2):1.2 抽象工廠模式(Abstract Factory)

大話設(shè)計模式-抽象工廠模式-結(jié)構(gòu)圖

概述

抽象工廠模式(Abstract Factory)是所有形態(tài)的工廠模式中最為抽象和最具一般性的一種形態(tài)熬词。抽象工廠模式是指當(dāng)有多個抽象角色時挽懦,使用的一種工廠模式。抽象工廠模式可以向客戶端提供一個接口,使客戶端在不必指定產(chǎn)品的具體的情況下罪帖,創(chuàng)建多個產(chǎn)品族中的產(chǎn)品對象躁劣。


定義

抽象工廠模式(Abstract Factory)迫吐,提供一個創(chuàng)建一系列相關(guān)或相互依賴對象的接口,而無需指定它們具體的類账忘。


UML圖解

  • AbstractFactory:聲明一個創(chuàng)建抽象產(chǎn)品對象的操作接口

  • ConcreteFactory:實(shí)現(xiàn)創(chuàng)建具體產(chǎn)品對象的操作

  • AbstractProduct:聲明一類產(chǎn)品對象接口

  • Product

    • 定義一個被相應(yīng)具體工廠創(chuàng)建的產(chǎn)品對象

    • 實(shí)現(xiàn)AbstractProduct接口

  • Client:使用AbstractFactory和AbstractProduct類聲明的接口

在抽象工廠模式中志膀,產(chǎn)品的創(chuàng)建由ConcreteFactory來完成,從結(jié)構(gòu)圖中可以看出鳖擒,抽象工廠模式的ConcreteFactory不是負(fù)責(zé)一種具體Product的創(chuàng)建溉浙,而是負(fù)責(zé)一個Product族的創(chuàng)建。


實(shí)現(xiàn)

說明:
1.本次實(shí)現(xiàn)以博客系統(tǒng)為例蒋荚,抽取其中的用戶和文章兩個對象進(jìn)行說明戳稽。
2.采用三層架構(gòu),為了省事圆裕,去掉了業(yè)務(wù)邏輯層(BLL)广鳍,希望理解。

示例項目結(jié)構(gòu)圖


抽象工廠模式實(shí)現(xiàn)-示例項目結(jié)構(gòu)

示例項目類圖


抽象工廠模式實(shí)現(xiàn)-示例項目類圖
  • Blog.Models:模型層
  • Blog.IDAL:數(shù)據(jù)訪問層接口(一類產(chǎn)品對象接口[AbstractProduct])
  • Blog.DAL:數(shù)據(jù)訪問層分類實(shí)現(xiàn)(抽象產(chǎn)品具體分類實(shí)現(xiàn))
    • MsSql:MsSql實(shí)現(xiàn)(抽象產(chǎn)品具體分類實(shí)現(xiàn)[ProductA1吓妆,ProductA2])
    • MySql:MySql實(shí)現(xiàn)(抽象產(chǎn)品具體分類實(shí)現(xiàn)[ProductB1赊时,ProductB2])
  • Blog.Factory:抽象工廠層
    • lFactory:抽象工廠接口([AbstractFactory])
    • MsSqlFactory:MsSql具體工廠(創(chuàng)建具體產(chǎn)品對象的操作[ConcreteFactory1])
    • MySqlFactory:MySql具體工廠(創(chuàng)建具體產(chǎn)品對象的操作[ConcreteFactory2])

模型層(Blog.Models)

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

namespace AbstractFactorySamlpe.Blog.Models
{
    public class UserModel
    {
        public int UserId { get; set; }
        public string UserName { get; set; }
        public string Password { get; set; }
    }
}
  • PostModel
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace AbstractFactorySamlpe.Blog.Models
{
    public class PostModel
    {
        public int PostId { get; set; }
        public string PostTitle { get; set; }
        public string PostContent { get; set; }
        public DateTime PostTime{ get; set; }
        public int PostUser { get; set; }
    }
}

數(shù)據(jù)訪問層接口(Blog.IDAL)

  • IUserDAL
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AbstractFactorySamlpe.Blog.Models;

namespace AbstractFactorySamlpe.Blog.IDAL
{
    public interface IUserDAL
    {
        bool Insert(UserModel model);

        UserModel GetById(int id);

        bool Update(UserModel model);

        bool Delete(int id);
    }
}
  • IPostDAL
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AbstractFactorySamlpe.Blog.Models;

namespace AbstractFactorySamlpe.Blog.IDAL
{
    public interface IPostDAL
    {
        bool Insert(PostModel model);

        PostModel GetById(int id);

        bool Update(PostModel model);

        bool Delete(int id);
    }
}

數(shù)據(jù)訪問層分類具體實(shí)現(xiàn)(Blog.DAL)

  • Blog.DAL.MsSql
    • MsSqlPostDAL
using AbstractFactorySamlpe.Blog.IDAL;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AbstractFactorySamlpe.Blog.Models;

namespace AbstractFactorySamlpe.Blog.DAL.MsSql
{
    public class MsSqlPostDAL : IPostDAL
    {
        public bool Delete(int id)
        {
            return true;
        }

        public PostModel GetById(int id)
        {
            return new PostModel();
        }

        public bool Insert(PostModel model)
        {
            return true;
        }

        public bool Update(PostModel model)
        {
            return true;
        }
    }
}
  • MsSqlUserDAL
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AbstractFactorySamlpe.Blog.IDAL;
using AbstractFactorySamlpe.Blog.Models;

namespace AbstractFactorySamlpe.Blog.DAL.MsSql
{
    public class MsSqlUserDAL : IUserDAL
    {
        public bool Delete(int id)
        {
            return true;
        }

        public UserModel GetById(int id)
        {
            return new UserModel();
        }

        public bool Insert(UserModel model)
        {
            return true;
        }

        public bool Update(UserModel model)
        {
            return true;
        }
    }
}
  • Blog.DAL.MySql
    • MySqlPostDAL
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AbstractFactorySamlpe.Blog.IDAL;
using AbstractFactorySamlpe.Blog.Models;

namespace AbstractFactorySamlpe.Blog.DAL.MySql
{
    public class MySqlPostDAL : IPostDAL
    {
        public bool Delete(int id)
        {
            return true;
        }

        public PostModel GetById(int id)
        {
            return new PostModel();
        }

        public bool Insert(PostModel model)
        {
            return true;
        }

        public bool Update(PostModel model)
        {
            return true;
        }
    }
}
  • MySqlUserDAL
using AbstractFactorySamlpe.Blog.IDAL;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AbstractFactorySamlpe.Blog.Models;

namespace AbstractFactorySamlpe.Blog.DAL.MySql
{
    public class MySqlUserDAL : IUserDAL
    {
        public bool Delete(int id)
        {
            return true;
        }

        public UserModel GetById(int id)
        {
            return new UserModel();
        }

        public bool Insert(UserModel model)
        {
            return true;
        }

        public bool Update(UserModel model)
        {
            return true;
        }
    }
}

抽象工廠(Blog.Factory)

  • IFactory
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AbstractFactorySamlpe.Blog.IDAL;

namespace AbstractFactorySamlpe.Blog.Factory
{
    public interface IFactory
    {

        IUserDAL CreateUser();

        IPostDAL CreatePost();
    }
}
  • MsSqlFactory
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AbstractFactorySamlpe.Blog.DAL.MsSql;
using AbstractFactorySamlpe.Blog.IDAL;

namespace AbstractFactorySamlpe.Blog.Factory
{
    public class MsSqlFactory : IFactory
    {
        public IPostDAL CreatePost()
        {
            return new MsSqlPostDAL();
        }

        public IUserDAL CreateUser()
        {
            return new MsSqlUserDAL();
        }
    }
}
  • MySqlFactory
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AbstractFactorySamlpe.Blog.DAL.MySql;
using AbstractFactorySamlpe.Blog.IDAL;

namespace AbstractFactorySamlpe.Blog.Factory
{
    public class MySqlFactory : IFactory
    {
        public IPostDAL CreatePost()
        {
            return new MySqlPostDAL();
        }

        public IUserDAL CreateUser()
        {
            return new MySqlUserDAL();
        }
    }
}

調(diào)用(Client)

Program

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AbstractFactorySamlpe.Blog.Factory;
using AbstractFactorySamlpe.Blog.IDAL;

namespace AbstractFactorySamlpe
{
    class Program
    {
        static void Main(string[] args)
        {
            //MSSQL
            //IFactory factory = new MsSqlFactory();
            //IUserDAL UserDAL = factory.CreateUser();
            //IPostDAL PostDAL = factory.CreatePost();

            //MySQL
            IFactory factory = new MySqlFactory();
            IUserDAL UserDAL = factory.CreateUser();
            IPostDAL PostDAL = factory.CreatePost();
        }
    }
}
Client

優(yōu)點(diǎn):

1、封裝性行拢,每個產(chǎn)品的實(shí)現(xiàn)類不是高層模塊要關(guān)心的祖秒。
2、產(chǎn)品族內(nèi)的約束為非公開狀態(tài)舟奠。

缺點(diǎn):

產(chǎn)品族擴(kuò)展非常困難竭缝。

使用場景:

一個對象族或是一組沒有任何關(guān)系的對象都有相同的約束,則可以使用抽象工廠模式沼瘫。

注意事項:
產(chǎn)品族擴(kuò)展困難抬纸,產(chǎn)品等級非常容易擴(kuò)展,也就是橫向擴(kuò)展容易耿戚,縱向擴(kuò)展困難湿故。

本文采用知識共享署名-相同方式共享 4.0 國際許可協(xié)議進(jìn)行許可。
基于簡書上的作品創(chuàng)作膜蛔。 可轉(zhuǎn)載坛猪、引用,但需經(jīng)本人同意后署名作者且注明文章出處皂股,并以相同方式共享墅茉。

知識共享許可協(xié)議
知識共享許可協(xié)議

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子就斤,更是在濱河造成了極大的恐慌悍募,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,561評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件战转,死亡現(xiàn)場離奇詭異搜立,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)槐秧,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,218評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來忧设,“玉大人刁标,你說我怎么就攤上這事≈吩危” “怎么了膀懈?”我有些...
    開封第一講書人閱讀 157,162評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長谨垃。 經(jīng)常有香客問我启搂,道長,這世上最難降的妖魔是什么刘陶? 我笑而不...
    開封第一講書人閱讀 56,470評論 1 283
  • 正文 為了忘掉前任胳赌,我火速辦了婚禮,結(jié)果婚禮上匙隔,老公的妹妹穿的比我還像新娘疑苫。我一直安慰自己,他們只是感情好纷责,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,550評論 6 385
  • 文/花漫 我一把揭開白布捍掺。 她就那樣靜靜地躺著,像睡著了一般再膳。 火紅的嫁衣襯著肌膚如雪挺勿。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,806評論 1 290
  • 那天喂柒,我揣著相機(jī)與錄音不瓶,去河邊找鬼。 笑死胳喷,一個胖子當(dāng)著我的面吹牛湃番,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播吭露,決...
    沈念sama閱讀 38,951評論 3 407
  • 文/蒼蘭香墨 我猛地睜開眼吠撮,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起泥兰,我...
    開封第一講書人閱讀 37,712評論 0 266
  • 序言:老撾萬榮一對情侶失蹤弄屡,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后鞋诗,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體膀捷,經(jīng)...
    沈念sama閱讀 44,166評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,510評論 2 327
  • 正文 我和宋清朗相戀三年削彬,在試婚紗的時候發(fā)現(xiàn)自己被綠了全庸。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,643評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡融痛,死狀恐怖壶笼,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情雁刷,我是刑警寧澤覆劈,帶...
    沈念sama閱讀 34,306評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站沛励,受9級特大地震影響责语,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜目派,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,930評論 3 313
  • 文/蒙蒙 一坤候、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧址貌,春花似錦铐拐、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,745評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至螟凭,卻和暖如春虚青,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背螺男。 一陣腳步聲響...
    開封第一講書人閱讀 31,983評論 1 266
  • 我被黑心中介騙來泰國打工棒厘, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人下隧。 一個月前我還...
    沈念sama閱讀 46,351評論 2 360
  • 正文 我出身青樓奢人,卻偏偏與公主長得像,于是被迫代替她去往敵國和親淆院。 傳聞我的和親對象是個殘疾皇子何乎,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,509評論 2 348

推薦閱讀更多精彩內(nèi)容