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

设计模式6——原型模式

时间:2014-09-16 20:29:41      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   2014   div   sp   

原型模式主要指通过基类的指针能够动态创建出当前实际类型的实例,可以快速复制出当前的一个副本。

bubuko.com,布布扣

 

Prototype.h内容

 1 #ifndef Prototype_H_H
 2 #define Prototype_H_H
 3 
 4 #include <iostream>
 5 using namespace std;
 6 
 7 class Person
 8 {
 9 public:
10     virtual Person* clone() = 0;
11     virtual ~Person() {}
12     virtual void display() = 0;
13 };
14 
15 class Teacher : public Person
16 {
17 public:
18     virtual Person* clone() { return new Teacher; }
19     virtual void display() { cout << "This is a teacher!" << endl; }
20 };
21 
22 class Worker : public Person
23 {
24 public:
25     virtual Person* clone() { return new Worker; }
26     virtual void display() { cout << "This is a worker!" << endl; }
27 };
28 
29 
30 void PrototypeTest()
31 {
32     Person *person1 = new Teacher();
33     Person *person2 = new Worker();
34 
35     person1->clone()->display();
36     person2->clone()->display();
37 
38     delete person1;
39     delete person2;
40 }
41 
42 #endif

运行结果:

bubuko.com,布布扣

设计模式6——原型模式

标签:style   blog   http   color   io   os   2014   div   sp   

原文地址:http://www.cnblogs.com/MiniHouse/p/3975680.html

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