- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
MWE很长,还请大家多多包涵。简而言之,我想使用一个抽象对象工厂来创建从基类派生的对象,派生对象成为单例并使用 shared_ptr 传递。到目前为止,如果单例不是从单例模板派生的,则一切正常。
假设一个具有以下结构:
class Base{}
class Derived1 : public Base {} // public Base, public Singleton<Derived1>
class Derived2 : public Base {}
我想使用我的抽象对象工厂来生成派生类,但要确保它只创建一次,否则将 std::shared_ptr 返回给派生对象。
我已经实现了一个单例模板和一个对象工厂,如果我想创建不是从任何东西派生的对象,它可以很好地工作:
单例:
template<class Derived>
class Singleton{
private:
static std::shared_ptr<Derived> instance_;
public:
template <typename... Args>
static
std::shared_ptr<Derived> Instance(Args... args){
if (instance_ == nullptr){
instance_ = std::shared_ptr<Derived>(
new Derived(std::forward<Args>(args)...) );
}
return instance_;
}
};
template <class T> std::shared_ptr<T> Singleton<T>::instance_ = nullptr;
对象工厂:
template <class Object, typename... Args>
class Abstract_Factory_Base {
protected:
using Factories_Map = std::unordered_map<std::string, std::shared_ptr<Abstract_Factory_Base<Object, Args... >> >;
static Factories_Map* factories_; ///< \brief stores factories able to construct objects derived from "Object" template parameter
public:
Factories_Map* factories(){
if(factories_ == nullptr){
factories_ = new Factories_Map;
}
return factories_;
}
static
std::shared_ptr<Abstract_Factory_Base<Object, Args...>>
Type(const std::string &key){
return (*factories_)[key];
};
virtual
std::shared_ptr<Object>
create(const Args &... args) = 0;
};
template <class Object, class Derived, typename... Args>
class Abstract_Factory : public Abstract_Factory_Base<Object, Args...>{
public:
std::shared_ptr<Object>
create(const Args &... args){
return std::shared_ptr<Derived>(
new Derived(args...));
}
};
template <class Object, class Derived, typename... Args>
class Factory_Register : public Abstract_Factory<Object, Derived, Args...>{
public:
Factory_Register(const std::string& key){
//static_assert(!(std::is_base_of<Singleton<Derived>, Derived>::value), "");
this->factories()->emplace(
key,
std::shared_ptr<Abstract_Factory_Base<Object, Args...>>(
new Abstract_Factory<Object, Derived, Args...>));
}
};
template <class Object, class Derived, typename... Args>
class Singleton_Factory : public Abstract_Factory_Base<Object, Args...>{
public:
std::shared_ptr<Object> create(const Args &... args){
return Derived::Instance(args...);
}
};
template <class Object, class Derived, typename... Args>
class Singleton_Factory_Register : public Singleton_Factory<Object, Derived, Args...>{
public:
Singleton_Factory_Register(const std::string& key){
//static_assert(std::is_base_of<Singleton<Derived>, Derived>::value, "");
this->factories()->emplace(
key,
std::shared_ptr<Abstract_Factory_Base<Object, Args...>>(
new Singleton_Factory<Object, Derived, Args...>));
}
};
假设我现在想将它用于:
class Foo{
protected:
int x_, y_;
public:
Foo(){x_ = 0; y_ = 0;}
Foo(int x, int y){
x_=x;
y_=y;
}
void print(){
std::cout << x_+y_ << std::endl;
}
};
using Foo_Factory = Abstract_Factory_Base<Foo,int,int>;
class FooFoo : public Singleton<FooFoo>, public Foo{
friend class Singleton<FooFoo>;
using FooFoo_Register = Singleton_Factory_Register<
Foo,
FooFoo,
int,
int>;
static FooFoo_Register reg;
protected:
//int x_,y_;
FooFoo(){};
FooFoo(int x, int y){
x_=2*x;
y_=2*y;
}
public:
void print(){
std::cout << x_ << std::endl;
}
};
template <class Object, typename... Args>
typename Abstract_Factory_Base<Object, Args...>::Factories_Map* Abstract_Factory_Base<Object, Args...>::factories_;
FooFoo::FooFoo_Register FooFoo::reg("foofoo");
int main(){
std::shared_ptr<FooFoo> foofoo1, foofoo2, foofoo3;
foofoo1 = Foo_Factory::Type("foofoo")->create(1,2); // this fails
Foo_Factory::Type("foofoo"); // this calls ok
////foofoo2 = Foo_Factory::Type("foofoo")->create(10,10);
////foofoo3 = Foo_Factory::Type("foofoo")->create(2,10);
////printf("(%p, %p, %p)\n", foofoo1.get(), foofoo2.get(), foofoo3.get());
//printf("(%p)\n", foofoo1.get());
//foofoo1->print();
////foofoo2->print();
////foofoo3->print();
}
我遇到了很多编译错误,关于移动的提示,自过去几个小时以来我一直无法解决。
你能帮帮我吗,或者把我重定向到某个地方。我想要至少有可能吗?谢谢!
In file included from /usr/include/c++/5/bits/shared_ptr.h:52:0,
from /usr/include/c++/5/memory:82,
from main.cpp:2:
/usr/include/c++/5/bits/shared_ptr_base.h: In instantiation of ‘std::__shared_ptr<_Tp, _Lp>& std::__shared_ptr<_Tp, _Lp>::operator=(std::__shared_ptr<_Tp1, _Lp>&&) [with _Tp1 = Abstract_Factory_Base<Foo, int, int>; _Tp = FooFoo; __gnu_cxx::_Lock_policy _Lp = (__gnu_cxx::_Lock_policy)2u]’:
/usr/include/c++/5/bits/shared_ptr.h:302:4: required from ‘std::shared_ptr<_Tp>& std::shared_ptr<_Tp>::operator=(std::shared_ptr<_Tp1>&&) [with _Tp1 = Abstract_Factory_Base<Foo, int, int>; _Tp = FooFoo]’
main.cpp:180:13: required from here
/usr/include/c++/5/bits/shared_ptr_base.h:1008:4: error: no matching function for call to ‘std::__shared_ptr<FooFoo, (__gnu_cxx::_Lock_policy)2u>::__shared_ptr(std::remove_reference<std::__shared_ptr<Abstract_Factory_Base<Foo, int, int>, (__gnu_cxx::_Lock_policy)2u>&>::type)’
__shared_ptr(std::move(__r)).swap(*this);
^
/usr/include/c++/5/bits/shared_ptr_base.h:1146:7: note: candidate: std::__shared_ptr<_Tp, _Lp>::__shared_ptr(const std::__weak_ptr<_Tp, _Lp>&, std::nothrow_t) [with _Tp = FooFoo; __gnu_cxx::_Lock_policy _Lp = (__gnu_cxx::_Lock_policy)2u]
__shared_ptr(const __weak_ptr<_Tp, _Lp>& __r, std::nothrow_t)
^
/usr/include/c++/5/bits/shared_ptr_base.h:1146:7: note: candidate expects 2 arguments, 1 provided
/usr/include/c++/5/bits/shared_ptr_base.h:1094:2: note: candidate: template<class _Alloc, class ... _Args> std::__shared_ptr<_Tp, _Lp>::__shared_ptr(std::_Sp_make_shared_tag, const _Alloc&, _Args&& ...)
__shared_ptr(_Sp_make_shared_tag __tag, const _Alloc& __a,
^
/usr/include/c++/5/bits/shared_ptr_base.h:1094:2: note: template argument deduction/substitution failed:
/usr/include/c++/5/bits/shared_ptr_base.h:1008:4: note: cannot convert ‘std::move<std::__shared_ptr<Abstract_Factory_Base<Foo, int, int>, (__gnu_cxx::_Lock_policy)2u>&>((* & __r))’ (type ‘std::remove_reference<std::__shared_ptr<Abstract_Factory_Base<Foo, int, int>, (__gnu_cxx::_Lock_policy)2u>&>::type {aka std::__shared_ptr<Abstract_Factory_Base<Foo, int, int>, (__gnu_cxx::_Lock_policy)2u>}’) to type ‘std::_Sp_make_shared_tag’
__shared_ptr(std::move(__r)).swap(*this);
最佳答案
我认为问题在于 foofoo1 = Foo_Factory::Type("foofoo")
您尝试分配类型为 std::shared_ptr<Abstract_Factory_Base<Foo,int,int>>
的对象到一个 std::shared_ptr<FooFoo>
.这些类型之间没有转换。
要解决这个问题,您需要使用返回的工厂对象来创建您要存储的对象:
foofoo1 = Foo_Factory::Type("foofoo")->create(...);
为 FooFoo
使用适当的参数构造函数被传递给 create
.
关于具有抽象工厂的派生类的 C++11 单例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44117029/
我有一个无法理解的奇怪编译问题。 //I know, you should never derive from the STL Library template class SharedClass :
我是一个刚开始学习 Haskell 的菜鸟,所以如果我问愚蠢的问题,请耐心等待。 最近我在 SO 中遇到了演示如何导出函数和表达式的类型和实现的问题(诸如 How can I understand "
如何自动派生此 GADT 的 Read 实例: {-# LANGUAGE GADTs, StandaloneDeriving #-} data TypeDec a where TypeDecInt
我遇到了我想要的情况 Deal class要注意它DealDetail type反之亦然,我想 DealDetail注意Deal type .将来我想有很多 Deal 的后代和 DealDetails
我是 C# 新手,所以请多多包涵。 好的,所以我在不同的程序集中有两个类需要相互引用: namespace AssemblyA { class A { private B MyB {
简而言之,我已经实现了一个派生自 SynchronizationContext 的类,以便 GUI 应用程序可以轻松地使用在 GUI 线程以外的线程上引发的事件。我非常感谢对我的实现的评论。具体来说,
我正在设计一个小型系统,想知道如何为派生类分配内存的细微差别。 如果我有两个类(class) class foo { public: int a; Foo(): a(0) {}; }; class
我正在尝试编写一个派生 PartialEq 的枚举,其中包含一个手动执行此操作的特征对象。我使用了解决方案 here为了强制 Trait 的实现者编写相等方法。这无法编译: trait Trait {
以下代码可以编译(特别是 MyError 被识别为具有调试特性): use std::str; use std::fmt; #[derive(Debug)] enum MyError where F:
是否有一种简单的方法来注释结构中的字段,以便在派生 PartialEq 特征时忽略它们?例如: #[derive(PartialEq,Eq)] pub struct UndirectedGraph {
我正在编写代码来处理“Foo”类型的对象。 foo 是一种容器,为了提供对其元素的高效和抽象访问,它提供了 Element 类型的嵌套类。 Element 包装对象在容器中的位置。 现在,“Foo”可
假设如下: class child : public parent { public: fun1(parent * obj); //somewhere on the child class
我有几个模板类 template class Transition { public: virtual Cost getCost() = 0; }; template class St
我正在尝试使用自定义 QSortFilterProxyModel . 这是我的标题: #include class QSortFilterProxyModel_NumbersLast : publi
我正在使用 C# 和 mvc3。我在解决方案中添加了一个项目。我想创建一个新 Controller 并让它从我添加的项目中的 Controller 派生。我该怎么做? 最佳答案 在 Visual St
我在 python 中有一个对象,它派生自 QtGui.QGraphicsPixmapItem,具有一些基本属性和方法。在对此对象的引用上调用 deepcopy 后,当我尝试使用该副本时收到一条错误消
由于只能给FixedDocument添加页面,所以我写了一个派生类: public class CustomFixedDocument : FixedDocument { public voi
我在自定义 QMainWindow 时遇到了很大的问题,因为我不知道如何实现以下内容: 在 QMainWindow 文档中,QMainWindow 有一些用于工具栏、停靠小部件、状态栏和其他的特殊区域
我想感受一下QT,决定写一个小的十六进制编辑器。为此,我需要一个允许滚动的小部件。经过一番研究,我发现 QTextEdit 为此目的派生自 QAbstractScrollArea。在阅读 QAbstr
我正在寻找一种可以从已经发生的洗牌过程中派生出 key 的算法。 假设我们有被打乱的字符串“Hello”: "hello" -> "loelh" 现在我想从中导出一个 key k,我可以用它来撤销洗牌
我是一名优秀的程序员,十分优秀!