1

boost::mpl::apply函数仅适用于模板类型参数。例如,以下工作:

using namespace boost::mpl;

template <class U, class S = int>
struct Bar { };

using BarInt = apply<Bar<_1>, int>::type;

但是,如果我有一个带有非类型参数的单独类模板:

template <class U, int S = 50>
struct Quux { };

using QuuxInt = apply<Quux<_1>, int>::type;

我收到如下编译错误:

/usr/include/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp:36:8: error: no class template named ‘apply’ in ‘struct Quux<mpl_::arg<1> >’
 struct apply_wrap1
        ^
foo.cxx: In function ‘int main()’:
foo.cxx:25:21: error: expected type-specifier
     using QuuxInt = apply<Quux<_1>, int>::type;
                     ^

除了为 Bar 创建一个将所有非类型参数转换为类型参数的子类型之外,有没有办法解决这个问题?

4

1 回答 1

1

不,没有办法绕过它。您必须编写一个包装器。谢天谢地,如果你让你的包装器成为一个元函数,它接受类型参数,然后解包到预期的非类型参数:

template <class U, class S = std::integral_constant<int, 50>>
struct QuuxWrap {
    using type = Quux<U, S::value>;
};

然后简单地申请QuuxWrap就能得到你想要的:

using QuuxInt = apply<QuuxWrap<_1>, int>::type;
// QuuxInt is Quux<int, 50>

值是模板元编程的红发继子。如果您将所有值提升为类型,那么一切都会变得更容易处理。

于 2015-12-14T18:49:45.400 回答