设计模式 工厂模式 使用shared_ptr

Posted itdef

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设计模式 工厂模式 使用shared_ptr相关的知识,希望对你有一定的参考价值。

参考http://blog.csdn.net/calmreason/article/details/50903729

所有产品继承同一基本类

由工厂保存基类指针 产生各类产品

代码

技术分享
// 002.cpp: 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <memory>
#include <iostream> 

using namespace std;

class Base
{
public:
    virtual void f(void) = 0;
    virtual void g(void) = 0;
protected:
    Base() { std::cout << "Base()" << std::endl; }
    virtual ~Base() { std::cout << "~Base()" << std::endl; }
};

class A :public Base
{
public:
    A(void) { std::cout << "A()" << std::endl; }
    ~A() { std::cout << "~A()" << std::endl; }
    void f(void) { std::cout << "A::f()" << std::endl; }
    void g(void) { std::cout << "A::g()" << std::endl; }
};

class B :public Base {
public:
    B(void) { std::cout << "B()" << std::endl; }
    ~B(void) { std::cout << "~B()" << std::endl; }
    void f() { std::cout << "B::f()" << std::endl; }
    void g() { std::cout << "B::g()" << std::endl; }
};

class Factory {
public:
    static std::shared_ptr<Base> CreateA(void) {
        return std::make_shared<A>();
    }
    static std::shared_ptr<Base> CreateB(void) {
        return std::make_shared<B>();
    }
};


int main()
{
    std::shared_ptr<Base> pbase = Factory::CreateA();
    pbase->f();
    pbase->g();

    pbase = Factory::CreateB();
    pbase->f();
    pbase->g();

    return 0;
}
View Code

 

以上是关于设计模式 工厂模式 使用shared_ptr的主要内容,如果未能解决你的问题,请参考以下文章

代码片-策略模式+工厂模式

代码片-策略模式+工厂模式

代码片-策略模式+工厂模式

带领大家一起进“厂”Java简单工厂+工厂方法+抽象工厂

带领大家一起进“厂”Java简单工厂+工厂方法+抽象工厂

格式工厂shared_ptr