程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> C++ 范式工廠

C++ 范式工廠

編輯:關於C++
#ifndef TEMPLATE_H
#define TEMPLATE_H
#include
template
<
class AbstractProduct,
typename IdentifierType,
class ProductCreator = AbstractProduct*(*)(),
template
class FactoryErrorPolicy = DefaultFactoryError
>
class Factory
{
public:
bool Register(const IdentifierType& id ,ProductCreator creator)
{
return associations_.insert(AssocMap::value_type(id,creator)).second;
}


bool UnRegister(const IdentifierType& id)
{
return associations_.erase(id) == 1;
}


AbstractProduct * CreateObject(const IdentifierType& id)
{
typename AssocMap::const_iterator i = associations_.find(id);
if(i != associations_.end())
{
return (i->second)();
}
//handle error
return OnUnknownType(id);
}
private:
typedef std::map AssocMap;
AssocMap associations_;
};


template
class DefaultFactoryError
{
public:
class Exception:public std::exception
{
public:
Exception(const IdentifierType& unknownId):unknownId_(unknownId){}
virtual const char* what()
{
return unknown object type passed to Factory;
}
const IdentifierType GetId()
{
return unknownId_;
}


private:
IdentifierType unknownId_;
};
protected:
static ProductType* OnUnknownType(const IdentifierType& id)
{
throw Exception(id);
}
};
#endif

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved