抽象工厂只是实现了 CRUD 中的 C,我想实现这样的工厂:
/* C++ */
class abstract_factory
{
};
template<typename T>
class factory:public abstract_factory
{
public:
std::weak_ptr<T> create();
std::weak_ptr<T> retrieve(const std::uint64_t& product_id);
void destroy(const std::uint64_t& product_id);
private:
std::uint64_t increment_serial_id_ = 0;
std::map<std::uint32_t, std::shared_ptr<T> products_;
std::uint64_t generate_id();
};
这种写法直接包含了 CRUD,同时内部也持有了对象。我觉得这种写法明显比只有 create() 的抽象工厂更好啊。为什么很少有人写这种模式呢?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.