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

Factory工厂模式

时间:2015-06-24 21:07:17      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:工厂模式

#include <iostream>
using namespace std;

//基类。
class Parent
{
public:
    virtual void Printf()=0;
};
class Child1 : public Parent
{
public:
    void Printf()
    {
        cout << "Child1::Printf()" << endl;
    }
};
class Child2 : public Parent
{
public:
    void Printf()
    {
        cout << "Child2::Printf()" << endl;
    }
};
class Child3 : public Parent
{
public:
    void Printf()
    {
        cout << "Child3::Printf()" << endl;
    }
};

//工厂类。
template<typename Type>
class DoWhatBase
{
public:
    virtual Type* GetBase() = 0;
};

template<typename Type>
class Dowhat : public DoWhatBase<Type>
{
public:
    Type* GetBase()
    {
        return new Type();
    }
};

int main()
{
    DoWhatBase<Child1> *q = new Dowhat<Child1>();
    Parent *p = q->GetBase();
    p->Printf();
    return 0;
}
//特点一:定义创建对象的接口,封装了对象的创建。
//特点二:使具体化类的工作延迟到子类中。

Factory工厂模式

标签:工厂模式

原文地址:http://blog.csdn.net/liuhuiyan_2014/article/details/46625879

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