gpt4 book ai didi

c++ - 如何正确链接 boost::mpl::inherit_linearly 和 boost::mpl::inherit 以便解析占位符?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:43:57 28 4
gpt4 key购买 nike

假设我有这些类型:

template
<
class T,
template <class> class Storage
>
struct AbstractFactoryUnit
{
virtual ~AbstractFactoryUnit() {}
virtual typename Storage< T >::StoredType doCreate(Storage< T >) = 0;
};

template
<
class TypeSequence,
template <class> class ProductStorage,
template <class, template <class> class> class Unit = AbstractFactoryUnit
>
struct AbstractFactory
: boost::mpl::inherit_linearly
<
TypeSequence,
boost::mpl::inherit
<
boost::mpl::_1,
Unit< boost::mpl::_2, ProductStorage >
>
>::type
{
typedef TypeSequence Products;

template <class T>
auto create() -> typename ProductStorage< T >::StoredType
{
Unit< T, ProductStorage >& unit = *this;
unit.doCreate(ProductStorage< T >());
}
};

现在我想实现 le AbstractFactory...

一些笑类型:

struct Foo {};
struct Bar {};
struct Baz {};

大声笑存储:

template <class T>
struct RawPointerStorage
{
typedef T* StoredType;
};

最后是实现:

struct FooBarBaz
: AbstractFactory< boost::mpl::set< Foo, Bar, Baz >, RawPointerStorage >
{
A* doCreate(RawPointerStorage< Foo >) override
{
return new A;
}

B* doCreate(RawPointerStorage< Bar >) override
{
return new B;
}

C* doCreate(RawPointerStorage< Baz >) override
{
return new C;
}
};

不幸的是,编译器提示:

1>C:\Libs\boost\boost_1_51_0\boost/mpl/aux_/preprocessed/plain/inherit.hpp(20): error C2500: 'boost::mpl::inherit2<T1,T2>' : 'AbstractFactoryUnit<T,ProductStorage>' is already a direct base class
1> with
1> [
1> T1=AbstractFactoryUnit<boost::mpl::_2,RawPointerStorage>,
1> T2=AbstractFactoryUnit<boost::mpl::_2,RawPointerStorage>
1> ]
1> and
1> [
1> T=boost::mpl::_2,
1> ProductStorage=RawPointerStorage
1> ]

我有点困惑,因为当 AbstractFactoryUnit 只接受一个模板参数时它编译得很好。我的猜测是编译器无法“解析”第二个占位符,但我应该承认我不知道为什么——因为我不太了解 boost 如何在占位符上调用 apply

我将 VS2012 与 vc100 或 vc110 一起使用。

有什么想法吗?(是的,我正在玩现代 C++ 设计中描述的 AbstractFactory)

编辑:我最终决定在我的问题和答案中毫不掩饰地提供我的整个 AbstractFactory 代码。

最佳答案

我不知道为什么 - 在这种情况下 - 第二个占位符不能“扩展”,但我发现包装表达式 boost::mpl::inherit 解决了我的问题.

所以你在这里,这个 AbstractFactory 简而言之:

我们将实现封装在命名空间Impl中:

namespace Impl
{

template
<
class TypeSequence,
template <class> class ProductStorage,
template <class, template <class> class> class Unit
>
struct AbstractFactory
{
private:
template <class T, class U>
struct Inherit : boost::mpl::inherit< T, Unit< U, ProductStorage > >
{};

public:
typedef typename boost::mpl::inherit_linearly
<
TypeSequence,
// the trick is on the following line
Inherit< boost::mpl::_1, boost::mpl::_2 >
>
::type Type;
};

} // namespace Impl

我们像这样从中推导出来:

template
<
class TypeSequence,
template <class> class ProductStorage = RawPointerStorage,
template <class, template <class> class> class Unit = AbstractFactoryUnit
>
struct AbstractFactory
: Impl::AbstractFactory< TypeSequence, ProductStorage, Unit >::Type
{
typedef TypeSequence Products;

template <class T>
auto create() -> typename ProductStorage< T >::StoredType
{
Unit< T, ProductStorage >& unit = *this;
return unit.doCreate(ProductStorage< T >());
}
};

关于c++ - 如何正确链接 boost::mpl::inherit_linearly 和 boost::mpl::inherit 以便解析占位符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14387334/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com