码迷,mamicode.com
首页 > 其他好文 > 详细

4_Prototype 原型

时间:2015-01-16 19:06:00      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

#Prototype

```
// 不好的做法
    monster
        ghost
        demon
        sorcerer
        
class Spawner
{
public:
  virtual ~Spawner() {}
  virtual Monster* spawnMonster() = 0;
};

class GhostSpawner : public Spawner
{
public:
  virtual Monster* spawnMonster()
  {
    return new Ghost();
  }
};

```

原型可以spawn出一个类似自己的物件(克隆)

``` 
class Monster
{
public:
  virtual ~Monster() {}
  virtual Monster* clone() = 0;

  // Other stuff...
};

class Ghost : public Monster {
public:
  Ghost(int health, int speed)
  : health_(health),
    speed_(speed)
  {}

  virtual Monster* clone()
  {
    return new Ghost(health_, speed_);
  }

private:
  int health_;
  int speed_;
};

// 这样只需要一个spawn类
class Spawner
{
public:
  Spawner(Monster* prototype)
  : prototype_(prototype)
  {}

  Monster* spawnMonster()
  {
    return prototype_->clone();
  }

private:
  Monster* prototype_;
};


Monster* ghostPrototype = new Ghost(15, 3);
Spawner* ghostSpawner = new Spawner(ghostPrototype);

//template
Spawner* ghostSpawner = new SpawnerFor<Ghost>();

```

 

4_Prototype 原型

标签:

原文地址:http://www.cnblogs.com/lightlfyan/p/4229301.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!