设计模式的理会和实现(C++)之四-Prototype模式
当前位置:以往代写 > C/C++ 教程 >设计模式的理会和实现(C++)之四-Prototype模式
2019-06-13

设计模式的理会和实现(C++)之四-Prototype模式

设计模式的理会和实现(C++)之四-Prototype模式

副标题#e#

浸染:

用原型实例指定建设工具的种类,而且通过拷贝这些原型建设新的工具。

UML布局图:

设计模式的剖析和实现(C++)之四-Prototype模式

抽象基类:

1)Prototype:虚拟基类,所有原型的基类,提供Clone接口函数

接口函数:

1)Prototype::Clone函数:纯虚函数,按照差异的派生类来实例化建设工具.

理会:

Prototype模式其实就是常说的"虚拟结构函数"一个实现,C++的实现机制中并没有支持这个特性,可是通过差异派生类实现的Clone接口函数可以完成与"虚拟结构函数"同样的结果.举一个例子来表明这个模式的浸染,假设有一家店肆是配钥匙的,他对外提供配制钥匙的处事(提供Clone接口函数),你需要配什么钥匙它不知道只是提供这种处事,详细需要配什么钥匙只有到了真正看到钥匙的原型才气配好.也就是说,需要一个提供这个处事的工具,同时还需要一个原型(Prototype),否则不知道该配什么样的钥匙.


#p#副标题#e#

实现:

1)Prototype.h

/**//********************************************************************
    created:    2006/07/20
    filename:     Prototype.h
    author:        李创
                http://www.cppblog.com/converse/

    purpose:    Prototype模式的演示代码
*********************************************************************/

#ifndef PROTOTYPE_H
#define PROTOTYPE_H

// 虚拟基类,所有原型的基类,提供Clone接口函数
class Prototype
{
public:
    Prototype(){}
    virtual ~Prototype(){}

    virtual Prototype* Clone() = 0;
};

// 派生自Prototype,实现Clone要领
class ConcreatePrototype1
    : public Prototype
{
public:
    ConcreatePrototype1();
    ConcreatePrototype1(const ConcreatePrototype1&);
    virtual ~ConcreatePrototype1();

    virtual Prototype* Clone();
};

// 派生自Prototype,实现Clone要领
class ConcreatePrototype2
    : public Prototype
{
public:
    ConcreatePrototype2();
    ConcreatePrototype2(const ConcreatePrototype2&);
    virtual ~ConcreatePrototype2();

    virtual Prototype* Clone();
};

#endif

#p#副标题#e#

2)Prototype.cpp

/**//********************************************************************
    created:    2006/07/20
    filename:     Prototype.cpp
    author:        李创
                http://www.cppblog.com/converse/

    purpose:    Prototype模式的演示代码
*********************************************************************/

#include "Prototype.h"
#include <iostream>

ConcreatePrototype1::ConcreatePrototype1()
{
    std::cout << "construction of ConcreatePrototype1\n";
}

ConcreatePrototype1::~ConcreatePrototype1()
{
    std::cout << "destruction of ConcreatePrototype1\n";
}

ConcreatePrototype1::ConcreatePrototype1(const ConcreatePrototype1&)
{
    std::cout << "copy construction of ConcreatePrototype1\n";
}

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

ConcreatePrototype2::ConcreatePrototype2()
{
    std::cout << "construction of ConcreatePrototype2\n";
}

ConcreatePrototype2::~ConcreatePrototype2()
{
    std::cout << "destruction of ConcreatePrototype2\n";
}

ConcreatePrototype2::ConcreatePrototype2(const ConcreatePrototype2&)
{
    std::cout << "copy construction of ConcreatePrototype2\n";
}

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

3)Main.cpp

/**//********************************************************************
    created:    2006/07/20
    filename:     Main.cpp
    author:        李创
                http://www.cppblog.com/converse/

    purpose:    Prototype模式的测试代码
*********************************************************************/

#include "Prototype.h"
#include <stdlib.h>

int main()
{
    Prototype* pPrototype1 = new ConcreatePrototype1();
    Prototype* pPrototype2 = pPrototype1->Clone();

    Prototype* pPrototype3 = new ConcreatePrototype2();
    Prototype* pPrototype4 = pPrototype3->Clone();

    delete pPrototype1;
    delete pPrototype2;
    delete pPrototype3;
    delete pPrototype4;

    system("pause");

    return 0;
}

    关键字:

在线提交作业