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

sherrylso

C++博客 首頁 新隨筆 聯系 聚合 管理
  18 Posts :: 0 Stories :: 124 Comments :: 0 Trackbacks

1. 什么是Multi-methods.

在闡述這個概念之前,我們先看一下什么是多態(Polymorphisn)。多態是面向對 象程序設計的一個重要的特征, 多態是允許你將父對象的指針(或者引用)設置成為它的子對象的技術,賦值之后,該父對象指針(或者引用)就可以根據當前賦 值給它的子對象的特性以不同的方式運作。簡單的說,就是一句話:允許將子類類型的指針賦值給父類類型的指針。多態性在C++中都是通過虛函數 (Virtual Function) 實現的。 例如:

class Parent
...
{
    
public:
    
virtual void Test() = 0;
}


class Sub1: public Parent
...
{
public:
   
void Test() 
   ...
{
        cout
<<"HI, this is sub1"<<endl;
   }

}

class Sub2: public Parent
...
{
   
void Test() 
   ...
{
        cout
<<"HI, this is sub2"<<endl;
   }

}


Parent
*  p1 = new Sub1();
Parent
*  p2 = new Sub2();
p1
->Test(); //call the Test method of class Sub1;
p2->Test();//call the Test method of class Sub1;

在c ++中,多態性的內涵是:通過virtual function技術,真實的函數調用完全依賴于對象的真實類型(這就是late binding)。我們的問題是:virtual function調用可不可以依賴于兩個或者兩個以上的對象?這就是multi-methods.

例子:

//method declaration
bool intersect(const Shape&const Shape&,)
...
{
//...
}

bool intersect(const Rectangle&const Circle&,)
...
{
//...
}


class Shape
...
{
//...
}

class Rectangle: public Shape
...
{
//...
}

class Circle: public Shape
...
{
//...
}


Shape
* s1 = new Rectangle();
Shape
* s2 = new Circle();

//while calling the following method, what happend?
//the actual function which will be called is bool intersect(const Shape&, const Shape&,), not bool intersect(const Rectangle&, const Circle&,)
// but what we want is the latter, not former
intersect(*s1,*s2);
//maybe you can call like this, which will meet our requirement, but, unfor?tunately , it violats the principle: we should program based on interface not implementation.
intersect(*(dynamic_cast<Rectangle*>(s1)),*(dynamic_cast<Circle*>(s2)));



2. C++ committee曾經考慮的解決方案(摘自 The Design and Evolution of C++, by Stroustrup)

c++從語言自身來支持multi-method:

//solution 1:
(s1@s2)->intersect();  //rather than intersect(s1,s2);
//solution 2:
bool intersect(virtual const Shape&,virtual const Shape&);
bool intersect(virtual const Rectangle&,virtual const Circle&//overrides
{
}

或許,C++在將來的某個版本會支持multi-method.

3. workarounds for multi-method.

3.1 用double dispatch設計模式解決。

double dispatch(雙分派)設計模式是指:在選擇一個方法的時候,不僅僅要根據消息接收者(receiver)的運行時型別(Run time type,還要根據參數的運行時型別(Run time type。接下來我們用double dispatch來解決一下上面的那個問題:

class Shape
...
{
//...
virtual bool intersect(const Shape&const = 0;
virtual bool intersect(const Rectangle&const = 0;
virtual bool intersect(const Circle&const =0;
}

class Rectangle: public Shape
...
{
//...
bool intersect(const Shape& s) const
...
{
   
return s.intersect(*this); // *this is a Rectangle and calling which intersect method totally depends on the real type of s!
}

bool intersect(const Rectangle&const 
...
{
//...
}

bool intersect(const Circle&const
...
{
//...
}

}

class Circle: public Shape
...
{
//...
bool intersect(const Shape& s) const
...
{
   
return s.intersect(*this); // *this is a Circle and calling which intersect method totally depends on the real type of s!
}

bool intersect(const Rectangle&const 
...
{
//...
}

bool intersect(const Circle&const
...
{
//...
}

}

對于double dispatch, 最大的問題是:這樣的設計與類的繼承結構高度耦合,當類的繼承結構改變后,會影響到現有的代碼。從上面的例子可以看到:Shape 類是不應該意識到它的子類的存在。不過當前的主流面向對象程序設計語言(C++/Java/C#等)都并不支持multi-method, 從這個意義上說:double dispatch還是一個合理,有效地解決方案

3.2 另一個可選的方案是RTTI。

bool intersect(const Shape& s1, const Shape& s2)
{
//the follwing code, can implement by using index table, the key is the type_id of the real object(such as typeid(s1) and typeid(s2))
//the query result is the pointer to function (such as the pointer to function: bool intersect(const Rectangle&, const Circle&).
if( typeid(s1)==typeid(Rectangle) && typeid(s1)==typeid(Rectangle))
{
     intersect(
*(dynamic_cast<Rectangle*>(s1)),*(dynamic_cast<Circle*>(s2)));
}

else if(...)
{
//...
}


}

 
bool intersect(const Rectangle&const Circle&,)
{
//...
}


class Shape
......
{
//...
}

class Rectangle: public Shape
......
{
//...
}

class Circle: public Shape
......
{
//...
}


Shape
* s1 = new Rectangle();
Shape
* s2 = new Circle();
//as a result , for the caller, the code is based on interface not implementation
intersect(*s1,*s2);





posted on 2007-05-06 22:28 愛上龍卷風 閱讀(2245) 評論(4)  編輯 收藏 引用

Feedback

# re: C++與double dispatch設計模式 2009-06-26 18:17 Dan
很好!明白這個東西了。  回復  更多評論
  

# re: C++與double dispatch設計模式[未登錄] 2011-01-08 14:53 darren
個人感覺還是RTTI比較好,代碼比較簡潔一點。  回復  更多評論
  

# re: C++與double dispatch設計模式 2012-02-03 14:52 croma
這樣的意義何在呢?
抽象行為的精神不就是簡化程式碼嗎?

正常的情況下 應該是 Shape 的 class 定義出形狀的描述規則
並且在 Intersect 實做這個規則的計算方法

子類別只要實作出自己的形狀描述就好了

我們不在意執行階段他是什麼型態,只要他完成 Shape 的描述就好了













  回復  更多評論
  

# re: C++與double dispatch設計模式 2013-09-05 01:52 Wangsu

@croma

Shape shapes[]={new Circle(),new Rect(), new Something()...};

foreach(Shape shape in shapes)
{
intersect(shape,next shape);<<=這裡會在 Compiler time 就決定調用 bool intersect(const Shape&, const Shape&,)。
}
  回復  更多評論
  


只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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| 亚洲免费高清视频| 99re66热这里只有精品4| 国产精品毛片a∨一区二区三区|国| 99热在线精品观看| 在线亚洲+欧美+日本专区| 欧美日韩在线播| 欧美亚洲在线观看| 欧美有码视频| 亚洲国产一区视频| 日韩一区二区高清| 国产在线一区二区三区四区| 免费日韩一区二区| 欧美日韩一二三区| 欧美在线三区| 快she精品国产999| 中文在线一区| 欧美在线视频日韩| 日韩亚洲不卡在线| 香蕉久久国产| 亚洲毛片av在线| 亚洲中无吗在线| 亚洲第一黄色| 亚洲午夜羞羞片| 在线播放国产一区中文字幕剧情欧美| 亚洲第一久久影院| 国产精品久久久久久久浪潮网站| 久久久噜噜噜久久狠狠50岁| 欧美国产一区二区在线观看| 亚洲自拍另类| 欧美韩日一区二区三区| 欧美一区成人| 欧美精品在线免费观看| 久久久久久网站| 欧美日韩精品久久| 免费91麻豆精品国产自产在线观看| 欧美日韩高清在线播放| 麻豆精品网站| 国产精品青草综合久久久久99| 欧美高清视频在线播放| 国产热re99久久6国产精品| 亚洲黑丝在线| 一区二区三区我不卡| 一本色道久久综合亚洲精品不| 在线观看一区欧美| 亚洲一区二区三区四区五区黄| 91久久午夜| 久久久久天天天天| 性久久久久久| 国产精品久久久久久久久借妻| 欧美国产视频一区二区| 好吊色欧美一区二区三区四区| 亚洲一区二区欧美日韩| 一区二区av| 欧美日韩黄视频| 亚洲欧洲一区二区三区| 亚洲黄色一区| 久久夜色精品国产| 母乳一区在线观看| 在线观看视频欧美| 久久米奇亚洲| 欧美第一黄色网| 尤物精品国产第一福利三区 | 亚洲一区二区三区中文字幕在线| 理论片一区二区在线| 久久综合福利| 亚洲国产精品久久久久婷婷老年 | 欧美激情亚洲另类| 在线观看视频一区| 快播亚洲色图| 欧美大片在线观看一区二区| 亚洲高清av| 欧美成年视频| 亚洲精选国产| 亚洲综合视频一区| 国产精品三级视频| 欧美在线播放一区| 久久综合给合久久狠狠狠97色69| 黄色亚洲网站| 免费日韩精品中文字幕视频在线| 亚洲国产99精品国自产| 99精品视频免费| 国产精品你懂得| 久久黄色影院| 亚洲国产中文字幕在线观看| 在线一区视频| 国产欧美日韩精品专区| 久久久精品999| 亚洲国产你懂的| 亚洲一区二区三区三| 国产欧美精品一区二区三区介绍| 香蕉尹人综合在线观看| 亚洲成色www久久网站| 一区二区三区四区五区在线| 国产精品久久久| 久久国产手机看片| 亚洲精品视频在线观看网站| 亚洲欧美日本日韩| 18成人免费观看视频| 欧美日韩国产一区二区| 欧美亚洲视频在线看网址| 欧美寡妇偷汉性猛交| 亚洲免费影视| 亚洲国产精品精华液2区45| 欧美性事在线| 麻豆成人在线播放| 亚洲一区二区久久| 欧美激情一区二区三区蜜桃视频| 亚洲欧美一级二级三级| 亚洲第一在线综合在线| 国产精品久久久久久久久久久久久 | 亚洲精品影视| 久久综合色天天久久综合图片| 亚洲精品在线一区二区| 国产一区视频网站| 国产精品成人在线| 免费影视亚洲| 欧美一级久久| 亚洲一区二区三区四区视频| 亚洲成色999久久网站| 久久精品国产欧美激情| 亚洲午夜久久久久久久久电影院| 亚洲国产高清自拍| 国产中文一区二区三区| 国产精品区二区三区日本| 欧美精品一区二| 美女久久网站| 久久精品国产亚洲aⅴ| 亚洲欧美制服另类日韩| 亚洲图片欧美午夜| 日韩午夜电影| 亚洲精品网站在线播放gif| 欧美成人国产| 欧美暴力喷水在线| 久热国产精品视频| 久久久国产成人精品| 欧美亚洲视频| 欧美一区二区三区四区视频 | 国内久久精品| 国产网站欧美日韩免费精品在线观看| 欧美色中文字幕| 国产精品国产亚洲精品看不卡15| 欧美精品一区二| 欧美日本亚洲韩国国产| 欧美日韩视频不卡| 欧美三级视频在线观看| 欧美日韩一区二区在线| 欧美日韩一区二区三区在线视频| 欧美激情一区二区三区在线视频观看| 欧美国产成人精品| 欧美人与性禽动交情品| 欧美美女视频| 国产精品久久久久久久第一福利| 国产精品久久国产精品99gif| 国产精品爱久久久久久久| 国产精品久久一卡二卡| 国产免费成人av| 激情久久五月天| 国产亚洲成精品久久| 亚洲肉体裸体xxxx137| 久久久久久电影| 久久亚洲一区二区| 欧美xx69| 国产精品久久久久久一区二区三区| 国产精品第三页| 国产一区二区三区久久精品| 一区二区三区在线不卡| 91久久久久久| 亚洲欧美日韩精品一区二区| 香蕉久久一区二区不卡无毒影院| 久久精品一区二区三区四区| 欧美丰满高潮xxxx喷水动漫| 亚洲精品1234| 亚洲欧美日韩国产综合在线| 久久久国产一区二区三区| 欧美精品久久久久久| 国产精品看片你懂得| 伊人影院久久| 亚洲免费网址| 欧美国产日韩一二三区| 亚洲午夜久久久久久久久电影院 | 夜夜嗨av色综合久久久综合网| 亚洲一区视频在线观看视频| 久久久久国产一区二区三区| 欧美日韩成人一区二区三区| 国产情人节一区| aa日韩免费精品视频一| 久久精品亚洲精品国产欧美kt∨| 亚洲电影观看| 亚洲欧美日韩视频一区| 欧美精品在线免费| 国产自产2019最新不卡| 亚洲一区视频在线| 亚洲国产精品悠悠久久琪琪| 欧美一级大片在线免费观看| 欧美日韩一区二区高清| 亚洲黄网站在线观看| 久久亚洲高清|