青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

C++研究

C++細節深度探索及軟件工程

  C++博客 :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
  37 隨筆 :: 0 文章 :: 74 評論 :: 0 Trackbacks
The Gof has 23 design patterns , but in most of  the design books , the E.G is written in Java , So  from now on , I will write about 23 articles to implement them using C++ , the design pattern itself is discussible , so welcome everyone to give his excelent idea to me , My QQ: 286259397 And My MSN : cxl82116@msn.com.
Welcome every one to express his ideas!

 


This is the Second Arcticle: ADAPTER PATTERN

While
referring to Adapter pattern , there must be a class that play the role of a adapter which can make two or more umcompatible class compatible . To explain this world , the UML diagram can make it clear easily :


        diagram 2-1 Class Adapter UML (referred from http://terrylee.cnblogs.com)


        diagram 2-2  Object Adapter UML (referred from http://terrylee.cnblogs.com)


E.G Explain them sparetely:
if a Customer request a  CUP WITH A CAP , but the orgin system can only supply a CUP , So you it's not compatible between the Request and the Orgin System , so you must find anthor factory who supply the cap ,and make it together to statisfy the customer ,  implement it in Class Adapter Pattern , Codes goes below.
Class Adapter Pattern:

 1/********************************************************************
 2    created:    2007/04/21
 3    created:    21:4:2007   18:47
 4    filename:     c:\Visual Studio 2005\Projects\Frist2005\Frist2005\Frist2005.cpp
 5    file path:    c:\Visual Studio 2005\Projects\Frist2005\Frist2005
 6    file base:    Frist2005
 7    file ext:    cpp
 8    author:        Chang Xinglong(King.C)
 9    
10    purpose:    Adapter Pattern -Class
11*********************************************************************/

12
13#include "stdafx.h"
14#include <map>
15#include <iostream>
16
17using namespace std;
18
19class OrginSystem
20{
21
22public:
23    void Supply()
24    {
25        cout<<"Orgin:SupplyACup"<<endl;
26    }

27}
;
28class CapSystem
29{
30public:
31    void Supply()
32    {
33        cout<<"CapSystem:SupplyACap"<<endl;
34    }

35}
;
36class Adapter: public OrginSystem , CapSystem
37{
38public:
39    void Supply()
40    {
41        OrginSystem::Supply();
42        CapSystem::Supply();
43        cout<<"So the request has been satisfied!"<<endl;
44    }

45}
;
46int _tmain(int argc, _TCHAR* argv[])
47{
48    Adapter _adpter;
49    _adpter.Supply();
50    system("pause");
51    return 0;
52}

The Same question , implement it using Object Adapter Pattern:
 1/********************************************************************
 2    created:    2007/04/21
 3    created:    21:4:2007   18:47
 4    filename:     c:\Visual Studio 2005\Projects\Frist2005\Frist2005\Frist2005.cpp
 5    file path:    c:\Visual Studio 2005\Projects\Frist2005\Frist2005
 6    file base:    Frist2005
 7    file ext:    cpp
 8    author:        Chang Xinglong(King.C)
 9    
10    purpose:    Adapter Pattern-Object 
11*********************************************************************/

12
13#include "stdafx.h"
14#include <map>
15#include <iostream>
16
17using namespace std;
18
19class OrginSystem
20{
21
22public:
23    void Supply()
24    {
25        cout<<"Orgin:SupplyACup"<<endl;
26    }

27}
;
28class CapSystem
29{
30public:
31    void Supply()
32    {
33        cout<<"CapSystem:SupplyACap"<<endl;
34    }

35}
;
36class Adapter: public OrginSystem , CapSystem
37{
38public:
39    Adapter():_os(new OrginSystem),_cs(new CapSystem)
40    {
41
42    }

43    void Supply()
44    {
45        _os->Supply();
46        _cs->Supply();
47        cout<<"So the request has been satisfied!"<<endl;
48    }

49private:
50    OrginSystem *_os;
51    CapSystem * _cs;
52}
;
53int _tmain(int argc, _TCHAR* argv[])
54{
55    OrginSystem _orign=new _adpter();
56    _orign.Supply();
57    system("pause");
58    return 0;
59}

60
61

In C++ , Muiltple-Derived pattern is not a recommend pattern, So if possible , use the Obeject -Adpter Pattern.

That's all ,Thanks! if any different idea , send me E-mail.
posted on 2007-04-21 19:13 常興龍 閱讀(1472) 評論(4)  編輯 收藏 引用 所屬分類: Design Patterns & Engeering

評論

# re: Implement "GOF's Adapter pattern" Using C++(Series of Gof patterns using C++ 2nd article) 2007-04-22 13:23 kurt
I think the UML is enough for us to understand it  回復  更多評論
  

# re: Implement "GOF's Adapter pattern" Using C++(Series of Gof patterns using C++ 2nd article) 2007-04-22 14:47 天津大學計算機學院 常興龍
hehe ,thanks for your comment , it's just for the beginner study c++ systemly and this article can demostrate that how to implement interface( in Java , there is the Keyword interface) using virtual function in C++ , the uml itself didn't express this. Thanks again!  回復  更多評論
  

# re: Implement "GOF's Adapter pattern" Using C++(Series of Gof patterns using C++ 2nd article) 2007-04-22 21:27 ★田德健★
all are english....  回復  更多評論
  

# re: Implement "GOF's Adapter pattern" Using C++(Series of Gof patterns using C++ 2nd article) 2007-09-12 15:47 Andrew Selivanov
I suppose this would be more compatible version (see below)
----------------------------------------------------------
#include <iostream>

#define USE_ADAPTER
#ifndef USE_ADAPTER

class OrginSystem
{

public:
void Supply()
{
std::cout<<"Orgin:SupplyACup"<<std::endl;
}
};
class CapSystem
{
public:
void Supply()
{
std::cout<<"CapSystem:SupplyACap"<<std::endl;
}
};
class Adapter: public OrginSystem , CapSystem
{
public:
void Supply()
{
OrginSystem::Supply();
CapSystem::Supply();
std::cout<<"So the request has been satisfied!"<<std::endl;
}
};

int main()
{
Adapter adapter;
adapter.Supply();
}
#else

class OrginalSystem
{

public:

virtual void Supply()
{
std::cout<<"Orgin:SupplyACup"<<std::endl;
}
};
class CapSystem
{
public:
virtual void Supply()
{
std::cout<<"CapSystem:SupplyACap"<<std::endl;
}
};
class Adapter: public OrginalSystem , CapSystem
{
OrginalSystem* _os;
CapSystem* _cs;

public:
Adapter():_os(new OrginalSystem),_cs(new CapSystem)
{

}
void Supply()
{
_os->Supply();
_cs->Supply();
std::cout<<"So the request has been satisfied!"<<std::endl;
}
};

int main()
{
OrginalSystem* original = new Adapter();
original->Supply();
delete original;
}

#endif
----------------------------------------------------------
Andrew  回復  更多評論
  

> hi的博客
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            麻豆亚洲精品| 亚洲人成77777在线观看网| 国产欧美一区二区色老头| 亚洲女同同性videoxma| 欧美一区二区免费视频| 狠狠色狠狠色综合人人| 鲁大师成人一区二区三区| 最新国产乱人伦偷精品免费网站| 一本色道久久综合亚洲精品不卡| 国产精品家教| 久久国产精品网站| 亚洲韩国青草视频| 亚洲欧美日韩一区二区三区在线| 国产伦一区二区三区色一情| 久久精品中文字幕一区| 亚洲三级色网| 久久精品一区蜜桃臀影院| 亚洲国产片色| 国产精品都在这里| 久久国产精品网站| 亚洲另类自拍| 久久亚洲综合网| 一区二区三区国产精华| 国产一区二区三区四区hd| 欧美成人首页| 欧美影院成人| 亚洲美女色禁图| 老牛影视一区二区三区| 亚洲视频在线一区| 亚洲国产精品成人综合色在线婷婷| 欧美午夜宅男影院| 免费在线欧美视频| 欧美在线免费| 亚洲午夜在线视频| 91久久精品国产91性色tv| 久久麻豆一区二区| 亚洲女同在线| 日韩网站在线| 亚洲国产三级| 黄色欧美日韩| 国产伦理一区| 国产精品久久久一区二区| 欧美电影美腿模特1979在线看| 性做久久久久久久久| av不卡在线观看| 亚洲国产精品尤物yw在线观看 | 性欧美8khd高清极品| 亚洲美女精品一区| 精品91久久久久| 国产亚洲成精品久久| 国产精品麻豆成人av电影艾秋| 欧美成人嫩草网站| 免费欧美日韩| 久久综合狠狠综合久久激情| 欧美有码视频| 亚洲欧美日韩另类| 亚洲在线播放| 亚洲一区二区视频在线观看| 日韩视频免费看| 亚洲国产精品99久久久久久久久| 另类尿喷潮videofree| 久久精品99无色码中文字幕| 午夜欧美大片免费观看| 亚洲在线一区| 亚洲欧美日韩精品一区二区| 中日韩高清电影网| 亚洲视频一二区| 亚洲一区二区三区四区视频| 一区二区三区产品免费精品久久75 | 猛男gaygay欧美视频| 久久精品国产亚洲一区二区三区| 性欧美video另类hd性玩具| 亚洲一区在线视频| 亚洲欧美日韩一区在线| 亚洲欧美一区二区原创| 性做久久久久久| 久久国产精品99国产| 久久先锋资源| 欧美成人dvd在线视频| 欧美激情五月| 欧美日韩在线免费观看| 欧美午夜视频| 国产精品视频在线观看| 国产亚洲精品高潮| 在线欧美三区| 在线亚洲自拍| 先锋影音网一区二区| 久久久www成人免费精品| 蜜臀久久99精品久久久画质超高清| 欧美凹凸一区二区三区视频| 亚洲精品国产精品国产自| 99日韩精品| 欧美在线你懂的| 欧美sm视频| 国产精品白丝黑袜喷水久久久 | 一区二区视频免费在线观看| 亚洲高清在线精品| 在线中文字幕一区| 欧美在线免费观看| 欧美成在线视频| 亚洲作爱视频| 欧美在线视频免费播放| 欧美成人免费观看| 国产精品卡一卡二| 在线观看欧美黄色| 在线视频欧美一区| 欧美一区二区三区婷婷月色 | 久久久久久久网站| 欧美黄色网络| 国产午夜亚洲精品羞羞网站| 亚洲激情欧美激情| 欧美一级午夜免费电影| 欧美国产日韩一区二区三区| 一本色道久久精品| 久久久噜噜噜久噜久久| 国产精品扒开腿爽爽爽视频| 在线国产精品一区| 亚洲一级影院| 欧美激情亚洲自拍| 午夜精品久久久久久久99黑人| 欧美国产日韩精品| 精品二区视频| 亚洲欧美日韩国产一区| 欧美激情精品久久久久久| 亚洲欧美日韩精品久久久| 欧美激情第4页| 韩国三级在线一区| 亚洲欧美另类久久久精品2019| 欧美99久久| 欧美在线资源| 国产精品久久91| 日韩视频免费观看| 你懂的一区二区| 欧美一区二区高清在线观看| 欧美日韩精品二区| 亚洲人成免费| 蜜臀91精品一区二区三区| 亚洲欧美日韩综合国产aⅴ| 欧美日韩一区在线观看视频| 亚洲国产女人aaa毛片在线| 久久婷婷久久| 亚洲欧美日韩国产另类专区| 欧美三级电影大全| 99国内精品久久久久久久软件| 奶水喷射视频一区| 久久九九国产精品| 国产日韩精品一区二区三区在线| 亚洲一区在线播放| 夜夜爽夜夜爽精品视频| 欧美精品一区在线发布| 亚洲国产一区二区三区青草影视| 久久久噜噜噜久久| 欧美专区日韩专区| 国产一区高清视频| 久久久久国产成人精品亚洲午夜| 亚洲影音一区| 国产精品女人毛片| 亚洲欧美电影院| 亚洲一区二区三区四区在线观看| 欧美视频在线不卡| 亚洲综合精品四区| 亚洲综合大片69999| 国产精品女主播| 久久精品日韩| 久久免费黄色| 亚洲全黄一级网站| 亚洲精品中文字幕有码专区| 欧美日韩亚洲成人| 午夜精品久久久久久久久久久久久| 一区二区av在线| 国产精品日韩欧美一区二区| 欧美一区二区三区四区视频| 欧美中文在线视频| 在线成人性视频| 91久久久在线| 国产精品jvid在线观看蜜臀| 午夜精品美女自拍福到在线 | 亚洲国产三级网| 欧美另类69精品久久久久9999| 一二三区精品福利视频| 中国成人黄色视屏| 国产亚洲人成网站在线观看| 毛片一区二区| 欧美精品久久久久久| 亚洲欧美第一页| 久久精品国产第一区二区三区最新章节| 伊人春色精品| 亚洲精品一二三区| 国产精品一卡| 欧美成人资源| 欧美午夜美女看片| 久久青草久久| 欧美区在线播放| 欧美在线在线| 欧美福利电影网| 欧美在线视频二区| 欧美夫妇交换俱乐部在线观看| 午夜精品亚洲一区二区三区嫩草| 蘑菇福利视频一区播放| 亚洲一区二区三区免费观看 |