在(原創) 我的Design Pattern之旅:Strategy Pattern (初級) (Design Pattern) (C++) (OO C++) (Template C++)中,我們使用了strategy pattern讓Grapher能畫Triangle、Circle和Square
因為需求再次改變,:D,我們希望Grapher能將文字印在各Shape中,執行結果如下
Draw Hello Shape!! in Square
Draw Hello C++!! in Circle
為了達到此需求,我們可以將IShape interface改成
class IShape {
public:
virtual void draw(const char *text) const = 0;
};
但若將來需求再改變,希望畫的不是文字,而是一張圖片,那interface又必須再變動,為了一勞永逸,我們會將整個物件傳給各strategy,IShape interface改成如下
class IShape {
public:
virtual void draw(Grapher &grapher) const = 0;
};
Grapher::drawShpae()將*this傳給各strategy
void drawShape() {
this->shape->draw(*this);
}