首页 > 其他 > 详细

【设计模式】Prototype Pattern

时间:2015-06-14 19:58:11      阅读:107      评论:0      收藏:0      [点我收藏+]

main.cpp

#include "Prototype.h"
#include <iostream>
using namespace std;

int main(int argc, char *argv[]) {
    
    Prototype *p = new ConcreatePrototype();

    Prototype *p1 = p->Clone();

    return 0;
}

Prototype.h

#ifndef _PROTOTYPE_H
#define _PROTOTYPE_H

class Prototype {
public :
    virtual ~Prototype();

    virtual Prototype *Clone() const = 0;
protected :
    Prototype();
};

class ConcreatePrototype :public Prototype {
public :
    ConcreatePrototype();

    ConcreatePrototype(const ConcreatePrototype &cp);

    ~ConcreatePrototype();

    Prototype *Clone() const;
};

#endif

Prototype.cpp

#include "Prototype.h"
#include <iostream>
using namespace std;

Prototype::Prototype() {}

Prototype::~Prototype() {}

Prototype *Prototype::Clone() const {
    return 0;
}

ConcreatePrototype::ConcreatePrototype() {}

ConcreatePrototype::~ConcreatePrototype() {}

ConcreatePrototype::ConcreatePrototype(const ConcreatePrototype &cp) {
    cout << "ConcreatePrototype..." << endl;
}

Prototype *ConcreatePrototype::Clone() const {
    return new ConcreatePrototype(*this);
}

 

【设计模式】Prototype Pattern

原文:http://www.cnblogs.com/Susake/p/4575453.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!