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

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>
            欧美日韩国产999| 欧美精品免费在线观看| 欧美日韩中文另类| 99视频在线观看一区三区| 欧美寡妇偷汉性猛交| 老鸭窝91久久精品色噜噜导演| 国产在线成人| 欧美国产高潮xxxx1819| 欧美成人精品在线播放| 99在线精品视频| 亚洲一区综合| 伊人狠狠色j香婷婷综合| 亚洲高清免费视频| 欧美精品一区二区精品网 | 欧美在线国产精品| 伊人成人网在线看| 亚洲欧洲精品一区二区| 国产精品久久久久永久免费观看| 午夜精彩视频在线观看不卡| 羞羞色国产精品| 亚洲精品一区二区三区99| 99精品国产热久久91蜜凸| 国产午夜精品久久久久久免费视| 蜜臀va亚洲va欧美va天堂| 欧美视频观看一区| 美国成人直播| 欧美午夜在线| 欧美 日韩 国产 一区| 欧美人与禽性xxxxx杂性| 午夜久久久久| 欧美成人乱码一区二区三区| 欧美一区二区观看视频| 美女脱光内衣内裤视频久久影院 | 欧美在线亚洲一区| 久色婷婷小香蕉久久| 亚洲香蕉网站| 美女国产一区| 欧美资源在线| 欧美午夜精品久久久久久久| 久久综合九色综合欧美狠狠| 欧美午夜视频| 亚洲国产精品一区| 91久久在线| 欧美日韩中文字幕在线| 有码中文亚洲精品| 亚洲国产精品一区二区第一页 | 免费视频一区| 国产精品美女www爽爽爽视频| 欧美国产视频日韩| 国精品一区二区| 一二三区精品福利视频| 日韩天天综合| 老司机精品视频一区二区三区| 先锋影音国产一区| 欧美视频一区二区三区…| 亚洲国产乱码最新视频| 在线精品视频一区二区| 性欧美在线看片a免费观看| 亚洲主播在线| 欧美视频在线观看免费网址| 欧美大片91| 女同一区二区| 一区二区三区高清不卡| 农村妇女精品| 亚洲第一精品夜夜躁人人爽 | 欧美国产先锋| 六十路精品视频| 激情五月***国产精品| 性感少妇一区| 久久久久免费视频| 激情欧美丁香| 久久资源在线| 亚洲激情不卡| 亚洲视频1区| 国产精品99一区二区| 亚洲神马久久| 欧美一区二区三区视频在线观看| 国产精品欧美日韩一区| 亚洲欧美国产精品va在线观看| 欧美伊人精品成人久久综合97| 国产精品高潮久久| 欧美一区精品| 欧美风情在线观看| 亚洲乱码国产乱码精品精可以看 | 亚洲欧洲三级| 欧美乱妇高清无乱码| aa级大片欧美| 欧美一区二区在线看| 国内精品视频久久| 麻豆精品在线播放| 99精品久久久| 久久精品视频在线看| 亚洲福利视频三区| 欧美色图五月天| 亚洲欧美综合国产精品一区| 免费一级欧美在线大片| 日韩亚洲在线观看| 国产精品视频久久| 久久九九99| 亚洲精品免费观看| 欧美资源在线观看| 亚洲人妖在线| 国产视频亚洲| 欧美日韩国产一区二区三区| 亚洲男人的天堂在线aⅴ视频| 久久先锋资源| 宅男精品导航| 亚洲电影视频在线| 国产精品视频精品视频| 免费久久精品视频| 亚洲综合视频网| 亚洲高清在线精品| 久久久噜噜噜久久| 中日韩美女免费视频网站在线观看 | 久久综合中文色婷婷| 一区二区三区四区五区精品| 国产在线观看精品一区二区三区| 欧美成人一区二区| 国产精品99久久久久久久vr| 影音先锋亚洲精品| 欧美一区二区精品| 久久免费视频在线| 亚洲一区二区日本| 亚洲人成网站999久久久综合| 国产九九视频一区二区三区| 欧美黄免费看| 麻豆精品一区二区综合av| 午夜精品福利电影| 亚洲深夜av| 亚洲精品一区二| 欧美国产欧美亚洲国产日韩mv天天看完整| 午夜欧美视频| 亚洲伊人观看| 在线一区观看| 日韩一本二本av| 99视频日韩| 999亚洲国产精| 亚洲精品久久久一区二区三区| 激情av一区| 国色天香一区二区| 国产综合婷婷| 国产综合色一区二区三区| 国产免费观看久久黄| 国产精品免费小视频| 国产精品久久婷婷六月丁香| 欧美视频一区在线| 欧美日韩在线三区| 欧美午夜精品理论片a级按摩| 欧美日韩亚洲成人| 国产精品yjizz| 日韩视频精品| 国产精品久久77777| 欧美—级a级欧美特级ar全黄| 欧美1区免费| 欧美日韩国产精品专区| 欧美日韩一区二区国产| 欧美性做爰猛烈叫床潮| 国产女优一区| 精久久久久久久久久久| 在线观看成人一级片| 亚洲人成亚洲人成在线观看| 亚洲激情亚洲| 亚洲少妇一区| 欧美一级久久| 久久在线免费观看视频| 欧美激情第3页| 一本久久精品一区二区| 香蕉免费一区二区三区在线观看| 欧美一区二区三区视频在线| 久久综合久色欧美综合狠狠| 欧美成人免费网站| 欧美午夜片在线观看| 国内久久婷婷综合| 亚洲精品孕妇| 欧美一区二区国产| 亚洲高清视频中文字幕| 亚洲视频在线观看视频| 久久国产精品一区二区三区| 欧美高清视频www夜色资源网| 欧美午夜不卡视频| 在线观看久久av| 亚洲一区二区三区精品在线| 久久免费观看视频| 亚洲精品自在久久| 欧美中文在线视频| 欧美日韩喷水| 尤物网精品视频| 午夜精品剧场| 亚洲国产日韩欧美在线图片| 亚洲欧美日韩国产综合在线| 免费成人高清视频| 国产日韩欧美高清| 亚洲图片欧美午夜| 欧美国产精品日韩| 欧美在线视频一区二区三区| 欧美日韩妖精视频| 亚洲欧洲日产国产综合网| 欧美在线一区二区| 一区二区激情| 欧美精品亚洲精品|